OverTheWire Bandit Level 14–15

br4ind3ad
1 min readAug 18, 2021

Given

The password for the next level can be retrieved by submitting the password of the current level to port 30000 on localhost.

Commands you may need to solve this level
ssh, telnet, nc, openssl, s_client, nmap

  1. ssh into bandit 14 via “ssh -i sshkey.private bandit14@localhost”
  2. Let's submit the password of the current level i.e. bandit14 to port 30000 on localhost using netcat. i.e. nc localhost 30000
bandit14@bandit:~$ ls -la
total 24
drwxr-xr-x 3 root root 4096 May 7 2020 .
drwxr-xr-x 41 root root 4096 May 7 2020 ..
-rw-r — r — 1 root root 220 May 15 2017 .bash_logout
-rw-r — r — 1 root root 3526 May 15 2017 .bashrc
-rw-r — r — 1 root root 675 May 15 2017 .profile
drwxr-xr-x 2 root root 4096 May 7 2020 .ssh
bandit14@bandit:~$ nc localhost 30000
4wcYUJFw0k0XLShlDzz*****xU3b3e
Correct!
BfMYroe26WYalil****9qh59eK5xNr
bandit14@bandit:~$

--

--