Menu

Post image 1
Post image 2
Post image 3
Post image 4
1 / 4
0

OverTheWire: Bandit Level 0

DEV Community·Amanda Igwe·about 1 month ago
#GWKZOZJi
Reading 0:00
15s threshold

Amanda Igwe

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!

Read More