[Bandit] Level 0: SSH로 연결하기

728x90

https://overthewire.org/wargames/bandit/bandit0.html

 

OverTheWire: Level Goal

We're hackers, and we are good-looking. We are the 1%. <!-- Please read and accept the Rules! --> Level 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 222

overthewire.org

 

해당 워게임을 실행하기 위해서는 SSH 연결이 필요하다. 윈도우 환경에서는 putty를 설치하거나 WSL2를 통해서 SSH연결을 하는 방법이 있다. 필자는 WSL2(Ubuntu)를 통해서 SSH를 연결하여 실습을 진행하였다.

 

 

풀이

사용자 이름은 bandit0이고, 서버이름은 bandit.labs.overthewire.org, 포트번호는 2220이라고 하였으므로 아래와 같이 작성한다.
ssh bandit0@bandit.labs.overthewire.org -p 2220

 

명령어 입력후 연결을 하고 싶다는 의미의 yes를 입력한다.

 

password는 bandit0를 입력하면, Welcome to OverTheWire!라는 문장을 통해 접속이 되었다는 것을 알 수 있다.

 

 

정리

ssh로 접속하는방법은 아래와 같다.
ssh [사용자 이름]@[서버 이름] -p [포트 번호]