Niveau 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
En se connectant en tant qu'utilisateur bandit11
on trouve un fichier data.txt
dont le contenu a subi une rotation de 13 caractères :
bandit11@bandit:~$ cat data.txt
Gur cnffjbeq vf 5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh
Tout comme pour l'exercice précédent la solution peut être trouvée facilement en utilisant des outils intégrés. Ici la commande de translation tr
permet de transformer les caractères en leur correspondance ROT-13 :
bandit11@bandit:~$ cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'
The password is 5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu