상세 컨텐츠

본문 제목

Bandit Level 0

ENG/Bandit

by jaws99 2024. 8. 2. 16:00

본문

반응형

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.
  • The ssh connects and logs in two ways: the [user@]hostname or the URI in the form of ssh://[user@]hostname[:port].

Write up

Case - 1

$ ssh ssh://bandit0@bandit.labs.overthewire.org: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:~$

 

Case - 2

We can use the '-p' option to connect to a remote host using the specified port.

$ 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 4 -> Level 5  (0) 2024.08.12
Bandit Level 3 -> Level 4  (0) 2024.08.10
Bandit Level 2 -> Level 3  (0) 2024.08.07
Bandit Level 1 -> Level 2  (0) 2024.08.05
Bandit Level 0 -> Level 1  (0) 2024.08.04

관련글 더보기