OvertheWire:bandit:Level1

CTF수상까지...!!·2023년 7월 3일
0

OvertheWire:문제풀이

목록 보기
2/26

문제 :

Level Goal

The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. Whenever you find a password for a level, use SSH (on port 2220) to log into that level and continue the game.

문제풀이 :

home directory에 있는 readme 파일에 비밀번호가 저장되어 있다고 한다. 이 비밀번호를 통해 bandit1로 접속하고 ssh로 접속해서 계속 진행하시오.

  1. Level0의 과정에서 진행했었던 bandit0에 접속한다.
  2. ls 명령어로 현재 디렉토리를 탐색한다.

엇… 너무 간단하게 readme 파일만 존재한다.

  1. ls -al로 권한이 있는지 확인했더니, 읽기 권한이 있다.

  2. cat readme 로 파일을 읽었다.

  3. NH2SXQwcBdpmTEzi3bvBHMM9H66vVXjL 비밀번호가 나왔다.

  4. 그러고 bandit0 에서 exit 한 후 ssh -p 2220 bandit1@bandit.labs.overthewire.org 을 입력하여 bandit1 로 접속하고, 위의 패스워드를 입력해 주면된다.

profile
보안 공부...내 공부...

0개의 댓글