back
Bandit 10 - writeups
Sharing this writeups by following overthewire rules.
This writing is for Level 10.
Bandit Level 10 → Level 11
ssh bandit10@bandit.labs.overthewire.org -p 2220
found password: akxW5ilL1JrxX9k3876mlN4Mgbpfjklu
bandit10@bandit:~$ ls
data.txt
bandit10@bandit:~$ cat data.txt | base64 -d
The password is D3D373fZKb0xxsDFSGs213pNVj3MJR
Explanation:
cat data.txtoutputs the entire contents ofdata.txt(a Base64-encoded string).| base64 -dpipes output tobase64, decoding it from Base64 format to readable text.