Bandit 16
Bandit 16 Level Goal The credentials for the next level can be retrieved by submitting the password of the current level to a port on localhost in the range 31000 to 32000 . First find out which of these ports have a server listening on them. Then find out which of those speak SSL and which don’t. There is only 1 server that will give the next credentials, the others will simply send back to you whatever you send to it. Commands you may need to solve this level ssh, telnet, nc, openssl, s_client, nmap Helpful Reading Material Port scanner on Wikipedia Okay so per our instructions it seems we need to use a port scanner here. I used nmap here last time and am fairly familiar with it, bandit16@bandit:~$ nmap -sV -p 31000-32000 localhost Starting Nmap 6.40 ( http://nmap.org ) at 2017-08-27 20:04 UTC Nmap scan report for localhost (127.0.0.1) Host is up (0.00063s latency). Other addresses for localhost (not scanned): 127.0.0.1 Not shown: 996 closed ports PORT STATE SE...