Joshua Nichols

Bandit Level 11 -> Level 12

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