Niveau 0

Niveau 0

Level Goal

The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 2220. The username is bandit0 and the password is bandit0. Once logged in, go to the Level 1 page to find out how to beat Level 1.

Commands you may need to solve this level

ssh

Helpful Reading Material

Secure Shell (SSH) on Wikipedia
How to use SSH on wikiHow

Le but de ce premier niveau est relativement simple ; il s'agit de se connecter en ssh au serveur indiqué dans la description de l'énoncé. Pour cela rien de plus simple, il suffit depuis un terminal de rentrer la commande suivante :

ssh bandit0@bandit.labs.overthewire.org -p 2220

Le serveur demandera alors d'entre le mot de passe correspondant à l'utilisateur (ici bandit0).

La commande ssh ci-dessus peut être expliquée comme suit :