[Bandit-OverTheWire] Level 0 -> Level 1

두비니

·

2020. 9. 9. 11:16

 

 

 

 

 

 

 

OverTheWire Bandit은 리눅스 명령어에 대한 문제들을 만들어 놓은 곳입니다.

보통 시스템 해킹을 하면 윈도우보다는 리눅스를 훨씬 더 많이 사용하기 때문에 리눅스 명령어는 평소 말하는것처럼 할줄 알아야합니다.

 

링크: overthewire.org/wargames/bandit/

 

OverTheWire: Level Goal

We're hackers, and we are good-looking. We are the 1%. 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 2220. The username is bandit0 and the password

overthewire.org

 

 

바로 해봅시다. 다음은 문제 지문입니다.

 

 


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.

 

 

문제 지문을 보아하니 ssh를 이용하여 접속을 하라고 하네요. bandit.labs.overthewire.org 주소에 username bandit0, 비밀번호 bandit0으로 접속하면 되네요. ssh를 이용하는 방법은 여러가지가 있지만, 리눅스 명령어 워게임인 만큼 리눅스를 통해 ssh로 접속하면 됩니다. putty같은걸로 접속해도 상관없다만, 정말정말정말 ubuntu를 설치하시길 바랍니다.

참고: dokhakdubini.tistory.com/39?category=801022

 

우분투를 처음 시작하는 당신에게

우분투를 처음 시작하는 당신에게 -우분투 각종 플러그인 모음- 1. ubuntu 다운로드: https://jimnong.tistory.com/673 우분투 리눅스 다운로드 방법(Desktop 버전) 컴퓨터로 우분투 리눅스(Ubuntu Linux) 공식..

dokhakdubini.tistory.com

 

ssh bandit0@bandit.labs.overthewire.org -p2220 으로 접속할 수 있다.

 

 

접속하면 저 밑에 엄청 설명이 많은데 그건 그냥 읽음 될듯

 

접속한 뒤로, ls -al 명령어를 통해 directory를 확인해보자.

ls에 대해서 잘 모르는 사람은 참고 : www.incodom.kr/Linux/%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4/ls

 

Linux/기본명령어/ls

# 리눅스 기본명령어 - ls

www.incodom.kr

 

 

확인해보면 readme라는 파일이 있는 것을 볼 수 있다. 이 파일의 값을 확인해보자.

 

 

readme안에는 boJ9jbbUNNfktd78OOpsqOltutMc3MY1 라는 문자열이 있다. 이 문자열을 통해 1단계로 접속하면 될 것 같다.