**Level Information**
> [!important] 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
Looking at the level hints, I tried a few of the different services but used `telnet` for this one.
Using the following command allows us to telnet to the localhost and specify what port to do it over.
```Bash
telnet localhost 30000
```
We are prompted to give the password for the current level and when we do, it prints the password for the next level and closes the connection.
![[Level 14 - 15.png]]