OverTheWire. Bandit Niveles 7 - 12
Continuamos con la serie de "Write Ups" de OverTheWire y Bandit. En esta ocasión veremos las soluciones para los niveles desde el 7 al 12. Como siempre, primero consulta manuales, información etc... para tratar de resolverlos. Vamos allá !!!
Bandit Level 7 → Level 8
Level Goal
The password for the next level is stored in the file data.txt next to the word millionth
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Solución Nivel 7
bandit7@bandit:~$ cat data.txt
missals 4zXrwugcziiPplv53mBGNLAkKSzBYa1N
concurred jD35xJ6pc5QCsQtSG0XF0rn4kJ8d3rAk
parking oJjfAFVKYVa9cZ7mCwtIW8OqskxbcxI0
pretzel's 8q6gSyE5m9DN7vTYnxx1VeR6e325PXZH
cootie f11kvv4is8qfgv8M9xsnymzdKIQXwb0v
hypoallergenic 5jnkbRCKhabP3rcYcjfRivgHkn5gVFgx
promulgation BlBed9VzEo3AvPMwk6agfXbDRP2Lir0U
snailing baOwidiC9PdtvFRWoBtT9SwSawmis5GE
employed Vz6Gr6nglTqegM0reVvlCRKgegIH16xD
circumcises fxhklXrR9h5Z7O6RoqgRcJ3YDtR7^C
bandit7@bandit:~$ ^C
bandit7@bandit:~$ cat data.txt | grep millionth
millionth cvX2JJa4CFALtqS87jk27qwqGhBM9plV
missals 4zXrwugcziiPplv53mBGNLAkKSzBYa1N
concurred jD35xJ6pc5QCsQtSG0XF0rn4kJ8d3rAk
parking oJjfAFVKYVa9cZ7mCwtIW8OqskxbcxI0
pretzel's 8q6gSyE5m9DN7vTYnxx1VeR6e325PXZH
cootie f11kvv4is8qfgv8M9xsnymzdKIQXwb0v
hypoallergenic 5jnkbRCKhabP3rcYcjfRivgHkn5gVFgx
promulgation BlBed9VzEo3AvPMwk6agfXbDRP2Lir0U
snailing baOwidiC9PdtvFRWoBtT9SwSawmis5GE
employed Vz6Gr6nglTqegM0reVvlCRKgegIH16xD
circumcises fxhklXrR9h5Z7O6RoqgRcJ3YDtR7^C
bandit7@bandit:~$ ^C
bandit7@bandit:~$ cat data.txt | grep millionth
millionth cvX2JJa4CFALtqS87jk27qwqGhBM9plV
Password Acceso Nivel 8 : cvX2JJa4CFALtqS87jk27qwqGhBM9plV
Bandit Level 8 → Level 9
Level Goal
The password for the next level is stored in the file data.txt and is the only line of text that occurs only once
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material
Solución Nivel 8
bandit8@bandit:~$ cat data.txt |sort | uniq -c
10 tWwjd16fG17vGdjutfOygVTjEGxlijOS
10 uBRx9inQTeaDZAuzEb2MadWXmkH8uW4O
1 UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
10 vBo3qbjNEF2d3meGEkRfc3mKpjtiDz1i
10 VElUBEIhJ4yBgOBSN05WgtV2rF6kkGdz
password : UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
10 tWwjd16fG17vGdjutfOygVTjEGxlijOS
10 uBRx9inQTeaDZAuzEb2MadWXmkH8uW4O
1 UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
10 vBo3qbjNEF2d3meGEkRfc3mKpjtiDz1i
10 VElUBEIhJ4yBgOBSN05WgtV2rF6kkGdz
password : UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
Password Acceso Nivel 9 : UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
Bandit Level 9 → Level 10
Level Goal
The password for the next level is stored in the file data.txt in one of the few human-readable strings, beginning with several ‘=’ characters.
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
2========== the
========== password
========== isa
========== truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk
password: truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk
Bandit Level 10 → Level 11
Level Goal
The password for the next level is stored in the file data.txt, which contains base64 encoded data
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material
Bandit Level 11 → Level 12
Level Goal
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
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material
Bandit Level 12 → Level 13
Level Goal
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!)
Commands you may need to solve this level
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd, mkdir, cp, mv, file