Bandit Level 11

OverTheWire-Level Directory
Previous Level: 10

Level 11 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 bandit11@bandit.labs.overthewire.org -p 2220”
Password:”IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR”
We are now into level 11

For this level we are told

“The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions”

If you have done this before you will know that is most likely ROT13

“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

“strings data.txt”

This will show the encoded password

We can use CyberChef or My CipherSolver

We can then decode this into

“The password is 5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu”

“5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu” is the password

Once again we can use
“ssh bandit12@bandit.labs.overthewire.org -p 2220”
and the password we just found to login to the next level

Next Level: 12