# Dojo du 2021-10-04
https://overthewire.org/wargames/leviathan/
## Description:
This wargame doesn't require any knowledge about programming - just a bit of common sense and some knowledge about basic *nix commands. We had no idea that it'd be this hard to make an interesting wargame that wouldn't require programming abilities from the players. Hopefully we made an interesting challenge for the new ones.
Leviathan’s levels are called leviathan0, leviathan1, … etc. and can be accessed on leviathan.labs.overthewire.org through SSH on port 2223.
To login to the first level use:
Username: leviathan0
Password: leviathan0
Data for the levels can be found in the **homedirectories**. You can look at /etc/leviathan_pass for the various level passwords.
## Level 0 → Level 1
```
ssh leviathan0@leviathan.labs.overthewire.org -p 2223
```
Password: `leviathan0`
```
ls -al
cd .backup
cat bookmarks.html | grep pass
...This will be fixed later, the password for leviathan1 is rioGegei8m...
```
## Level 1 → Level 2
```
ssh leviathan1@leviathan.labs.overthewire.org -p 2223
```
Password: `rioGegei8m`
Utiliser la commande `ltrace` pour exécuter pas à pas le programme `check`.
## Level 2 → Level 3
```
ssh leviathan2@leviathan.labs.overthewire.org -p 2223
```
Password: `ougahZi8Ta`
On découvre le programme `printfile`.
## Level 3 → Level 4
## Level 4 → Level 5
## Level 5 → Level 6
## Level 6 → Level 7