hwooo
Bandit 게임 시작하기 및 Level 0 본문
개인 기록용 블로그입니다. 혹시 틀린 내용이 있다면 댓글로 알려주세요!
https://overthewire.org/wargames/
OverTheWire: Wargames
We're hackers, and we are good-looking. We are the 1%. Wargames The wargames offered by the OverTheWire community can help you to learn and practice security concepts in the form of fun-filled games. To find out more about a certain wargame, just visit its
overthewire.org
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
0 단계는 ssh로 밴딧 서버에 접속하면 된다.
host : bandit.labs.overthewire.org
Port : 2220
1. putty 로 접속하기
Download PuTTY: latest release (0.78)
This page contains download links for the latest released version of PuTTY. Currently this is 0.78, released on 2022-10-29. When new releases come out, this page will update to contain the latest, so this is a good page to bookmark or link to. Alternativel
www.chiark.greenend.org.uk
위의 링크에서 버전에 맞는 putty 앱을 깔아줍니다.
실행 후 나온 페이지에서 빨간 박스의 내용을 작성한 후 Open을 누르면
밴딧 서버에 접속할 수 있습니다.
접속 후 bandit0 입력 시
password에 bandit0을 입력하면
(password는 원래 화면에 안 나와요)
level 0 단계 완료!
Host Name과 Port 넘버 작성 후 Save를 누르면
Saved Sessions에 Host Name이 저장된 걸 볼 수 있습니다. 다음 접속부터는 해당 세션을 더블 클릭 혹은 클릭 후 Open을 누르면 접속 가능!
2. window cmd 창으로 접속
Cmd 창으로 진입하려면 설정을 먼저 해줘야 합니다.
window 설정 -> 앱 -> 앱 및 기능 -> 선택적 기능 -> OpenSSH 클라이언트를 설치해주면 끝!
Cmd 창에서는 putty와 다르게 사용자 이름을 작성해야 합니다.
ssh [사용자 이름]@[서버 이름] -p [포트 번호]
0단계에 진입하려면 사용자 이름에 bandit0을 넣어서
ssh bandit0@bandit.labs.overthewire.org -p 2220
똑같이 password에 bandit0을 입력하면
level 0 완료!