Skip to main content

Posts

Showing posts with the label Krypton 0

Over the Wire - Krypton 0

Krypton 0 Objectives Welcome to Krypton! The first level is easy. The following string encodes the password using Base64: S1JZUFRPTklTR1JFQVQ= Use this password to log in to krypton.labs.overthewire.org with username krypton1 using SSH on port 2222. You can find the files for other levels in /krypton/ Soltuion So here we have a base64 encoded string for the password for level 1 we are going to use the base64 -d decoding built into my os echo S1JZUFRPTklTR1JFQVQ= | base64 -d KRYPTONISGREAT​ pretty simple