
Bandit: Level 15 => Level 16
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. Here are the details which we have from the previous level: Host: bandit.labs.overthewire.org Port: 2220 Username: bandit15 Password: 8xCjnmgoKbGLhHFAZlGE5Tmu4M2tKJQo So, The SSH syntax will be: sshpass -p 8xCjnmgoKbGLhHFAZlGE5Tmu4M2tKJQo ssh [email protected] -p 2220 The challenge is to submit the bandit15 password to port 30001 on localhost using SSL encryption. We can do this using either ncat with SSL support or directly using openssl. ...