DEV Community

Amanda Igwe
Amanda Igwe

Posted on

OverTheWire: Bandit Level 0

Using SSH on Command Line

We are to do the following to connect to the otw (overthewire) terminal.

  1. ssh into the host bandit.labs.overthewire.org
  2. port 2220
  3. username bandit0
  4. password bandit0

Let's quickly dive into the solution.

Before we start, I recommend using a virtual machine for this practice.

After setting up your VM. Follow the steps to ssh

  1. Open the command line and type this
ssh bandit0@bandit.labs.overthewire.org -p 2220

press enter

type yes

password is bandit0 
press enter
Enter fullscreen mode Exit fullscreen mode

otw b00

otw b01

You have successfully logged in and completed bandit level 0!!

See you in level 1!

Top comments (2)

Collapse
 
giorgio_falias_f218fdc1eb profile image
Giorgio Falias

I came across OverTheWire a couple of weeks ago and had so much fun with these Bandit challenges. Good Linux practice exercises!

Collapse
 
amandaigwe profile image
Amanda Igwe

OverTheWire is really good for hands-on projects. You are absolutely right with the Linux exercises.