Level Goal
The password for the next level is stored in the file data.txt among of few lines of human-readable strings starting with '=' characters.Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdSolution:
- [Comment] Using SSH to connect the server
- sp@simple-plan:~|=> ssh bandit9@bandit.labs.overthewire.org
...
bandit9@bandit.labs.overthewire.org's password: UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR - [Comment] Using ls command to list directory contents
- bandit9@melinda:~$ ls
data.txt - [Comment] Using strings command to discard non-printable characters in files
- [Comment] Using grep command to search the targets
- bandit9@melinda:~$ strings data.txt | grep "="
Rj=G
========== the
=qy9g
,========== passwordc
========== is
=9-5
O=p~
#r=t!
7e}=eG
========== truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk
uXI/{I=VPO=
6'Q|_=Vt
:={!
yd=6
- [Comment] Using exit command to disconnect connection to server
- bandit9@melinda:~$ exit
logout
Connection to bandit.labs.overthewire.org closed. - [Comment] It's done! Saving the password for next level.
No comments:
Post a Comment