overthewire-writeups

Bandit00: Log Into Remote Server

Challenge

Level Description

This was the starting point of the bandit wargame. 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.

The Process

So I was ready at my terminal, the Instruction were clear: I need to use SSH, but there was a custom port that is 2229. SSH, by default, connects on port 22, so I use that custom port to connect to bandit server.

Here’s how I did it:

$ ssh bandit0@bandit.labs.ooverthewire.org -p 2220

When asked for password, I entered [SPOILER]

Yeah, I just hop into the Bandit’s server, which mean I had succesfully logged in. YEAYY. this is just a beginning XD

Password For the Next Level

[SPOILER]

what I learned

Helpful Reading Material