What is it? @.@

Here is the place where I record some tactics about wargame, systems, and other security issues.

2014-01-23

OverTheWire - Bandit - Level 24 to Level 25

Description:

At this moment, level 25 does not exist yet.

Solution:
  1. [Comment] Using SSH to connect the server
  2. sp@simple-plan:~|=> ssh bandit24@bandit.labs.overthewire.org
    ...
    bandit24@bandit.labs.overthewire.org's password: UoMYTrfrBFHyQXmg6gzctqAwOmw1IohZ
  3. [Comment] Using ls command to list directory contents
  4. bandit24@melinda:~$ ls
    README.txt
  5. [Comment] Using cat command to output file's contents
  6. 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!
  7. [Comment] Using exit command to disconnect connection to server
  8. bandit24@melinda:~$ exit
    logout
    Connection to bandit.labs.overthewire.org closed.
Reference:
sshhttp://linuxcommand.org/man_pages/ssh1.html
lshttp://linuxcommand.org/man_pages/ls1.html
cathttp://linuxcommand.org/man_pages/cat1.html
exithttp://linuxcommand.org/man_pages/exit1.html
cdhttp://linuxcommand.org/lc3_man_pages/cdh.html
findhttp://linuxcommand.org/man_pages/find1.html
grephttp://linuxcommand.org/lc3_man_pages/grep1.html
sorthttp://linuxcommand.org/lc3_man_pages/sort1.html
uniqhttp://linuxcommand.org/man_pages/uniq1.html
stringshttp://linuxcommand.org/man_pages/strings1.html
base64http://linux.die.net/man/1/base64
trhttp://linuxcommand.org/man_pages/tr1.html
aliashttp://linuxcommand.org/man_pages/alias1.html
mkdirhttp://linuxcommand.org/man_pages/mkdir1.html
cphttp://linuxcommand.org/man_pages/cp1.html
xxdhttp://linuxcommand.org/man_pages/xxd1.html
filehttp://linuxcommand.org/man_pages/file1.html
mvhttp://linuxcommand.org/man_pages/mv1.html
gziphttp://linuxcommand.org/man_pages/gzip1.html
bzip2http://linuxcommand.org/man_pages/bzip21.html
tarhttp://linuxcommand.org/man_pages/tar1.html
echohttp://linuxcommand.org/man_pages/echo1.html
nchttp://linuxcommand.org/man_pages/nc1.html
opensslhttp://linuxcommand.org/man_pages/openssl1.html
diffhttp://linuxcommand.org/man_pages/diff1.html
envhttp://linuxcommand.org/man_pages/env1.html
cronhttp://linuxcommand.org/man_pages/cron8.html
crontabhttp://linuxcommand.org/man_pages/crontab1.html
cuthttp://linuxcommand.org/man_pages/cut1.html
md5sumhttp://linuxcommand.org/man_pages/md5sum1.html
chmodhttp://linuxcommand.org/man_pages/chmod1.html

2 comments:

  1. Level 25 and over have been released and it would nice to continue your work here ;)
    Thanks !

    ReplyDelete
  2. What i did, not saying its the best, but it worked...

    mkdir -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

    ReplyDelete