상세 컨텐츠

본문 제목

Bandit Level 0

ENG/Bandit

by jaws99 2025. 7. 23. 03:04

본문

반응형

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

  • ssh stands for Secure Shell and is a program for logging into a remote machine. It provide secure encrypted communications between two hosts.

 

Write up

To solve this level, we can use the `ssh` command to log into the Bandit server at `bandit.labs.overthewire.org` on port 2220, using the username `bandit0` and password `bandit0`.

 

The `ssh` command enables secure login to a remote server. The standard syntax is:

ssh [username]@[hostname] -p [port]

 

 

Using this syntax, run the following command in your terminal:

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

 

 

After running the command, you’ll be prompted for a password. Enter `bandit0`. If successful, you will be logged into the remote server and see a shell prompt.

$ ssh bandit0@bandit.labs.overthewire.org -p 2220
                         _                     _ _ _
                        | |__   __ _ _ __   __| (_) |_
                        | '_ \ / _` | '_ \ / _` | | __|
                        | |_) | (_| | | | | (_| | | |_
                        |_.__/ \__,_|_| |_|\__,_|_|\__|


                      This is an OverTheWire game server.
            More information on http://www.overthewire.org/wargames

bandit0@bandit.labs.overthewire.org's password:

Welcome to OverTheWire!
------------
  Enjoy your stay!

bandit0@bandit:~$

 

 

Next Level : Level 0 -> 1

반응형

'ENG > Bandit' 카테고리의 다른 글

Bandit Level 0 -> Level 1  (2) 2025.07.23
Bandit Level 12 -> Level 13  (2) 2024.10.03
Bandit Level 11 -> Level 12  (0) 2024.09.13
Bandit Level 10 -> Level 11  (0) 2024.09.11
Bandit Level 9 -> Level 10  (1) 2024.09.09

관련글 더보기