Level Goal
The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positionsCommands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxdHelpful Reading Material
Rot13 on WikipediaSolution:
- [Comment] Using SSH to connect the server
- sp@simple-plan:~|=> ssh bandit11@bandit.labs.overthewire.org
...
bandit11@bandit.labs.overthewire.org's password: IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR - [Comment] Using ls command to list directory contents
- bandit11@melinda:~$ ls
data.txt - [Comment] Using cat command to output file's contents
- bandit11@melinda:~$ cat data.txt
Gur cnffjbeq vf 5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh - [Comment] Utilizing the tr command to achieve ROT13
- [Comment] Using alias to create shortcuts for commands
- bandit11@melinda:~$ alias rot13="tr a-zA-Z n-za-mN-ZA-M"
- [Comment] Since there are 26 characters in the alphabet being used, ROT13 twice would restore the original text
- bandit11@melinda:~$ cat data.txt | rot13
The password is 5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu - [Comment] Using exit command to disconnect connection to server
- bandit11@melinda:~$ exit
logout
Connection to bandit.labs.overthewire.org closed. - [Comment] It's done! Saving the password for next level.
http://www.decode.org/?q=Gur+cnffjbeq+vf+5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh%0D%0A
ReplyDelete