OverTheWire-Level Directory
Previous Level: 9
Level 10 Fight!
In order to begin you will need to use PuTTY or preferably Linux and use the following information
If you are currently in a level type “logout”
Now type “ssh bandit10@bandit.labs.overthewire.org -p 2220”
Password:”truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk”
We are now into level 10
For this level we are told
“The password for the next level is stored in the file data.txt, which contains base64 encoded data”
If you have done this before you will know you can use
“ls “ to show files/folders
We then see”data.txt”
To find the password we will need to find the correct part of the txt file with
“base64 data.txt”
This will show the encoded password
We can use CyberChef or My CipherSolver
We can then decode this into
“VGhlIHBhc3N3b3JkIGlzIElGdWt3S0dzRlc4TU9xM0lSRnFyeEUxaHhUTkViVVBSCg==”
This looks like normal Base64 now… Lets double decode it!
“IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR” is the password
Once again we can use
“ssh bandit11@bandit.labs.overthewire.org -p 2220”
and the password we just found to login to the next level
Next Level: 11
