Bandit Level 15

OverTheWire-Level Directory
Previous Level: 14

Level 15 Fight!

If you are currently in a level type “logout”

Now type “ssh bandit15@bandit.labs.overthewire.org -p 2220”
Password:”BfMYroe26WYalil77FoDi9qh59eK5xNr”
We are now into level 15

For this level we are told

“The password for the next level can be retrieved by submitting the password of the current level to port 30001 on localhost using SSL encryption.”

For this level we need to use OpenSSL to connect to port 30001 and send the password

“openssl s_client -ign_eof -connect localhost:30001”

The “s_client” creates a generic SSL/TLS client which connects to the localhost on the typed in port

We then type in the current password and hit enter

We get a message that says “Correct!” with the password

The password is “cluFn7wTiGryunymYOu4RcffSxQluehd”

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

Next Level: 16