Bandit Level 11 -> Level 12
- Platform: OverTheWire
- Wargame: Bandit
- Date: 2025-12-13 12:52
Overview
Bandit Level 11: The password for Level 12 is stored in a file named data.txt that is encoded in a ROT13 (Rotate13).
One will need to decode the file data.txt.
Connection:
Host: bandit.labs.overthewire.org
Port: 2220
User: bandit11
Password: (use the password from Level 10's data.txt file)
Steps
1. SSH into the server as bandit11
local
$
ssh bandit11@bandit.labs.overthewire.org -p 2220(enter the password you found in Level 10 when prompted)
2. Translate the file
bandit11@bandit
bandit11@bandit:~$
cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'The password is (password for bandit12)
Summary
- The password is stored in a file named
data.txtin thehomedirectory of bandit11. - Use
catto print the contents of the filedata.txt. - Use
tr(translate) to replace characters from one set with another set. - Use
|(pipe) to chain commands together.