ssh bandit10@bandit.labs.overthewire.org -p 2220
bandit password: G7w8LIi6J3kTb8A7j9LgrywtEUlyyp6s
Task
The password for the next level is stored in the file data.txt, which contains base64 encoded data
Solution
The data.txt contains 1 line that was encoded in base64.
In order to decode the file run the command below
1
cat data.txt | base64 --decode
Look result ==> The password is 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM
==> CTF: { 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM }

Comments powered by Disqus.