Overthewire-Bandit Level 10 - Base64
Ref:
Bandit Level 10
Level Goal The password for the next level is stored in the file data.txt, which contains base64 encoded data
Commands you may need to solve this level grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material Base64 on Wikipedia
SSH
1
2
ssh bandit10@bandit.labs.overthewire.org -p 2220
FGUW5ilLVJrxX9kMYMmlN4MgbpfMiqey
Commands:
1
2
bandit10@bandit:~$
base64 -d data.txt
Output:
1
The password is dtR173fZKb0RRsDFSGsg2RWnpNVj3qRr
Command:
1
strings data.txt | grep "=="
1
strings data.txt | grep "==" | head -n 1
This post is licensed under CC BY 4.0 by the author.
