Bandit Level 10 -> Level 11
- Platform: OverTheWire
- Wargame: Bandit
- Date: 2025-12-13 12:47
Overview
Bandit Level 10: The password for Level 11 is stored in a file named data.txt that is encoded in base64.
One will need to decode the file data.txt.
Connection:
Host: bandit.labs.overthewire.org
Port: 2220
User: bandit10
Password: (use the password from Level 9's data.txt file)
Steps
1. SSH into the server as bandit10
local
$
ssh bandit10@bandit.labs.overthewire.org -p 2220(enter the password you found in Level 9 when prompted)
2. Decode the file
bandit10@bandit
bandit10@bandit:~$
cat data.txt | base64 -dThe password is (password for bandit11)
Summary
- The password is stored in a file named
data.txtin thehomedirectory of bandit10. - Use
catto print the contents of the filedata.txt. - Use
base64 -dto decode the text. - Use
|(pipe) to chain commands together.