Joshua Nichols

Bandit Level 10 -> Level 11

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 -d
The password is (password for bandit11)

Summary