At this moment, level 25 does not exist yet.
Solution:
- [Comment] Using SSH to connect the server
- sp@simple-plan:~|=> ssh bandit24@bandit.labs.overthewire.org
...
bandit24@bandit.labs.overthewire.org's password: UoMYTrfrBFHyQXmg6gzctqAwOmw1IohZ - [Comment] Using ls command to list directory contents
- bandit24@melinda:~$ ls
README.txt - [Comment] Using cat command to output file's contents
- bandit24@melinda:~$ cat README.txt
Congratulations on solving the last level of this game!
At this moment, there are no more levels to play in this game. However, we are constantly working
on new levels and will most likely expand this game with more levels soon.
Keep an eye out for an announcement on our usual communication channels!
In the meantime, you could play some of our other wargames.
If you have an idea for an awesome new level, please let us know! - [Comment] Using exit command to disconnect connection to server
- bandit24@melinda:~$ exit
logout
Connection to bandit.labs.overthewire.org closed.
Level 25 and over have been released and it would nice to continue your work here ;)
ReplyDeleteThanks !
What i did, not saying its the best, but it worked...
ReplyDeletemkdir -p /tmp/25
cd /tmp/25
for i in $(seq -w 0000 9999); do echo "UoMYTrfrBFHyQXmg6gzctqAwOmw1IohZ $i" ; done>> test
nc localhost 30002 < test >>output
cat output