Login#
- ssh :
ssh bandit14@bandit.labs.overthewire -p 2220
- password :
MU4VWeTyJk8ROof1qqmcBPaLh7lDCPvS
Task :#
- submit the current level password to localhost on port 30000 to get the wanted password
Theory#
- it this level we gonna use the
nc
or netcat
command which allows us to write and read data over a network connection - it can be used for
TCP
and UDP
- the command is
nc <server> <port>
Solution#
- we just need to do the following :
nc loalhost 30000
- then we will have the option to submit the current level password.