Niveau 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
On peut simplement utiliser un enchainement de commandes pour trouver la ligne unique au sein du fichier data.txt
:
bandit8@bandit:~$ cat data.txt | sort | uniq -u
UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR
Si l'on décompose la commande utilisée on a :
cat data.txt
affiche l'ensemble des lignes présentes dans le fichiersort
ordonne les lignes par ordre alphabétiqueuniq -u
ne conserve que les lignes uniques (via une comparaison avec la ligne suivante)