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
pretty simple
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 -dKRYPTONISGREAT
pretty simple
Comments
Post a Comment