Niveau 4
Level Goal
There is no information for this level, intentionally.
Une fois loggué en tant que leviathan4
, listons le contenu du répertoire home :
leviathan4@leviathan:~$ ls -la
total 24
drwxr-xr-x 3 root root 4096 Aug 26 2019 .
drwxr-xr-x 10 root root 4096 Aug 26 2019 ..
-rw-r--r-- 1 root root 220 May 15 2017 .bash_logout
-rw-r--r-- 1 root root 3526 May 15 2017 .bashrc
-rw-r--r-- 1 root root 675 May 15 2017 .profile
dr-xr-x--- 2 root leviathan4 4096 Aug 26 2019 .trash
Si on regarde le contenu du dossier .trash
:
leviathan4@leviathan:~/.trash$ ls -la
total 16
dr-xr-x--- 2 root leviathan4 4096 Aug 26 2019 .
drwxr-xr-x 3 root root 4096 Aug 26 2019 ..
-r-sr-x--- 1 leviathan5 leviathan4 7352 Aug 26 2019 bin
Si on exécute le fichier bin
on obtient le résultat suivant :
leviathan4@leviathan:~/.trash$ ./bin
01010100 01101001 01110100 01101000 00110100 01100011 01101111 01101011 01100101 01101001 00001010
Ces suites de 0 et 1 sont des caractères encodés au format binaire. Le tout est décodable en utilisant la commande perl suivante :
leviathan4@leviathan:~/.trash$ ./bin | perl -lape '$_=pack"(B8)*",@F'
Tith4cokei
Et nous avons le mot de passe du niveau suivant Tith4cokei
.