Bandit
Level 0
The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 2220. The username is bandit0 and the password is bandit0. Once logged in, go to the Level 1 page to find out how to beat Level 1.
ssh bandit0@bandit.labs.overthewire.org -p 2220
Password: bandit0
Level 0 → Level 1
The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. Whenever you find a password for a level, use SSH (on port 2220) to log into that level and continue the game.
cat readme
Output: NH2SXQwcBdpmTEzi3bvBHMM9H66vVXjL
Level 1 → Level 2
The password for the next level is stored in a file called - located in the home directory
ssh bandit1@bandit.labs.overthewire.org -p 2220
Password: NH2SXQwcBdpmTEzi3bvBHMM9H66vVXjL
cat "./-"
Output: rRGizSaX8Mk1RTb1CNQoXTcYZWU6lgzi
Level 2 → Level 3
The password for the next level is stored in a file called spaces in this filename located in the home directory
ssh bandit2@bandit.labs.overthewire.org -p 2220
Password: rRGizSaX8Mk1RTb1CNQoXTcYZWU6lgzi
cat "./spaces in this filename"
Output: aBZ0W5EmUfAf7kHTQeOwd8bauFJ2lAiG
Level 3 → Level 4
The password for the next level is stored in a hidden file in the inhere directory.
ssh bandit3@bandit.labs.overthewire.org -p 2220
Password: aBZ0W5EmUfAf7kHTQeOwd8bauFJ2lAiG
ls -la
ls -la inhere/
cat inhere/.hidden
Output: 2EW7BBsr6aMMoJ2HjW067dm8EgX26xNe
Level 4 → Level 5
The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “reset” command.
ssh bandit4@bandit.labs.overthewire.org -p 2220
Password: 2EW7BBsr6aMMoJ2HjW067dm8EgX26xNe
find ./inhere -type f -exec file {} + | grep "ASCII"
cat ./inhere/-file07
Output: lrIWWI6bB37kxfiCQZqUdOIYfr6eEeqR
Level 5 → Level 6
The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties:
human-readable 1033 bytes in size not executable
ssh bandit5@bandit.labs.overthewire.org -p 2220
Password: lrIWWI6bB37kxfiCQZqUdOIYfr6eEeqR
find ./inhere -type f ! -executable -size 1033c
cat ./inhere/maybehere07/.file2
Output: P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU
Level 6 → Level 7
The password for the next level is stored somewhere on the server and has all of the following properties:
owned by user bandit7 owned by group bandit6 33 bytes in size
ssh bandit6@bandit.labs.overthewire.org -p 2220
Password: P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU
find / -user bandit7 -group bandit6 -size 33c 2>/dev/null
/
: Start the search from the root directory.-user bandit7
: Look for files owned by the user bandit7.-group bandit6
: Look for files owned by the group bandit6.-size 33c
: Look for files that are 33 bytes in size. The c stands for bytes.2>/dev/null
: This part of the command redirects all error messages (like "Permission denied") to /dev/null so that you only see valid results.
cat /var/lib/dpkg/info/bandit7.password
Output: z7WtoNQU2XfjmMtWA8u5rN4vzqu4v99S
Level 7 → Level 8
The password for the next level is stored in the file data.txt next to the word millionth
ssh bandit7@bandit.labs.overthewire.org -p 2220
Password: z7WtoNQU2XfjmMtWA8u5rN4vzqu4v99S
cat data.txt | grep "millionth"
Output: millionth TESKZC0XvTetK0S9xNwm25STk5iWrBvP
Level 8 → Level 9
The password for the next level is stored in the file data.txt and is the only line of text that occurs only once
The password for the next level is stored in the file data.txt next to the word millionth
ssh bandit8@bandit.labs.overthewire.org -p 2220
Password: TESKZC0XvTetK0S9xNwm25STk5iWrBvP
sort data.txt | uniq -u
uniq
flag -u
displays only the unrepeated lines.
Output: EN632PlfYiZbn3PhVK3XOGSlNInNE00t
Level 9 → Level 10
The password for the next level is stored in the file data.txt in one of the few human-readable strings, preceded by several ‘=’ characters.
ssh bandit9@bandit.labs.overthewire.org -p 2220
Password: EN632PlfYiZbn3PhVK3XOGSlNInNE00t
Use strings to extract readable strings
The strings command in Linux is used to extract printable strings from a binary file. This is helpful when trying to locate human-readable content within such files.
strings data.txt | grep "==="
The -a option in grep allows it to process a binary file as if it were text. When dealing with files that might contain a mix of binary data and human-readable strings, the -a (or --text) option can be quite useful.
Using grep -a "===" data.txt will search the file for lines containing the pattern ===, treating the file as text, regardless of its actual content. Given your level's goal, this command should be effective in identifying lines with several '=' characters, leading you to find the password.
grep -a "===" data.txt
x]T========== theG)"
========== passwordk^
========== is
========== G7w8LIi6J3kTb8A7j9LgrywtEUlyyp6s
Level 10 → Level 11
The password for the next level is stored in the file data.txt, which contains base64 encoded data
ssh bandit10@bandit.labs.overthewire.org -p 2220
Password: G7w8LIi6J3kTb8A7j9LgrywtEUlyyp6s
base64 --decode data.txt
Output: 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM
Level 11 → Level 12
The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions
ssh bandit11@bandit.labs.overthewire.org -p 2220
Password: 6zPeziLdR2RKNdNYFNb6nVCKzphlXHBM
cat data.txt | tr '[a-z][A-Z]' '[n-za-m][N-ZA-M]'
Output: The password is JVNBBFSmZwKKOP0XbFXOoW8chDz5yVRv
Level 12 → Level 13
The password for the next level is stored in the file data.txt, which is a hexdump of a file that has been repeatedly compressed. For this level it may be useful to create a directory under /tmp in which you can work using mkdir. For example: mkdir /tmp/myname123. Then copy the datafile using cp, and rename it using mv (read the manpages!)
ssh bandit12@bandit.labs.overthewire.org -p 2220
Password: JVNBBFSmZwKKOP0XbFXOoW8chDz5yVRv
cd /tmp
mktemp -d
Output: /tmp/tmp.KC62y3y5gx
cd tmp.KC62y3y5gx
cp ~/data.txt .
mv data.txt data.hex_dump
Use xxd
to revert the hexdump:
xxd -r data.hex_dump data.bin
Use the file
command to identify the file type:
file data.bin
Output: data.bin: gzip compressed data, was "data2.bin", last modified: Thu Oct 5 06:19:20 2023, max compression, from Unix, original size modulo 2^32 573
mv data.bin data.gz
gzip -d data.gz
ls
Output: data data.hex_dump
Use the file
command to identify the file type:
file data
Output: data: bzip2 compressed data, block size = 900k
mv data data.bz2
bzip2 -d data.bz2
file data
Output: data: gzip compressed data, was "data4.bin", last modified: Thu Oct 5 06:19:20 2023, max compression, from Unix, original size modulo 2^32 20480
mv data data.gz
gzip -d data.gz
file data
Outpu: data: POSIX tar archive (GNU)
mv data data.tar
tar -xf data.tar
ls
Output: data5.bin data.hex_dump data.tar
file data5.bin
Output: data5.bin: POSIX tar archive (GNU)
tar -xf data5.bin
ls
Output: data5.bin data6.bin data.hex_dump data.tar
file data6.bin
Output: data6.bin: bzip2 compressed data, block size = 900k
bzip2 -d data6.bin
file data6.bin.out
Output: data6.bin.out: POSIX tar archive (GNU)
tar -xf data6.bin.out
ls
Output: data5.bin data6.bin.out data8.bin data.hex_dump data.tar
file data8.bin
Output: data8.bin: gzip compressed data, was "data9.bin", last modified: Thu Oct 5 06:19:20 2023, max compression, from Unix, original size modulo 2^32 49
mv data8.bin data8.gz
gzip -d data8.gz
file data8
Output: data8: ASCII text
cat data8
Output: The password is wbWdlBxEir4CaE8LaPhauuOo6pwRmrDw
Level 13 → Level 14
The password for the next level is stored in /etc/bandit_pass/bandit14 and can only be read by user bandit14. For this level, you don’t get the next password, but you get a private SSH key that can be used to log into the next level. Note: localhost is a hostname that refers to the machine you are working on
scp -P 2220 bandit13@bandit.labs.overthewire.org:~/sshkey.private .
Password: wbWdlBxEir4CaE8LaPhauuOo6pwRmrDw
You should have the sshkey.private
on your local directory
Level 14 → Level 15
The password for the next level can be retrieved by submitting the password of the current level to port 30000 on localhost.
ssh bandit14@bandit.labs.overthewire.org -p 2220 -i sshkey.private
Note
If you get WARNING: UNPROTECTED PRIVATE KEY FILE!
message. This can be easy fix by changing ssh key permisions:
chmod 600 sshkey.private
cat /etc/bandit_pass/bandit14
Output: fGrHPx402xGC7U7rXKDaxiWFTOiF0ENq
nc 127.0.0.1 30000
Input: fGrHPx402xGC7U7rXKDaxiWFTOiF0ENq
Correct!
jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt
Level 15 → Level 16
The password for the next level can be retrieved by submitting the password of the current level to port 30001 on localhost using SSL encryption.
Helpful note: Getting “HEARTBEATING” and “Read R BLOCK”? Use -ign_eof and read the “CONNECTED COMMANDS” section in the manpage. Next to ‘R’ and ‘Q’, the ‘B’ command also works in this version of that command…
ssh bandit15@bandit.labs.overthewire.org -p 2220
Password: jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt
echo "jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt" | openssl s_client -ign_eof -connect 127.0.0.1:30001
Correct!
JQttfApK4SeyHwDlI9SXGR50qclOAil1
closed
Level 16 → Level 17
The credentials for the next level can be retrieved by submitting the password of the current level to a port on localhost in the range 31000 to 32000. First find out which of these ports have a server listening on them. Then find out which of those speak SSL and which don’t. There is only 1 server that will give the next credentials, the others will simply send back to you whatever you send to it.
ssh bandit16@bandit.labs.overthewire.org -p 2220
Password: JQttfApK4SeyHwDlI9SXGR50qclOAil1
nmap -sV 127.0.0.1 -p 31000-32000
Starting Nmap 7.80 ( https://nmap.org ) at 2023-10-26 00:08 UTC
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00013s latency).
Not shown: 996 closed ports
PORT STATE SERVICE VERSION
31046/tcp open echo
31518/tcp open ssl/echo
31691/tcp open echo
31790/tcp open ssl/unknown
31960/tcp open echo
echo 'JQttfApK4SeyHwDlI9SXGR50qclOAil1' | openssl s_client -ign_eof -connect 127.0.0.1:31790
It will output the private ssh key, you should copy and paste it to your local machine.
Level 17 → Level 18
There are 2 files in the homedirectory: passwords.old and passwords.new. The password for the next level is in passwords.new and is the only line that has been changed between passwords.old and passwords.new
NOTE: if you have solved this level and see ‘Byebye!’ when trying to log into bandit18, this is related to the next level, bandit19
ssh ssh -i ./sshkey17.private bandit17@bandit.labs.overthewire.org -p 2220
Note
If you get WARNING: UNPROTECTED PRIVATE KEY FILE!
message. This can be easy fix by changing ssh key permisions:
chmod 600 sshkey.private
diff passwords.new passwords.old
< hga5tuuCLF6fFzUpnagiMN8ssu9LFrdg
---
> p6ggwdNHncnmCNxuAt0KtKVq185ZU7AW
Since I wrote paswords.new
on the first position, the password is hga5tuuCLF6fFzUpnagiMN8ssu9LFrdg