OverTheWire.org Bandit Level 4 -> Level 5

http://overthewire.org/wargames/bandit/bandit5.html

Bandit Level 4 → Level 5

Level Goal

The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “reset” command.

Commands you may need to solve this level

ls, cd, cat, file, du, find

Level 4에서 Level 5로 가기 위해서는 'inhere' 디렉토리 안에 사람이 읽을 수 있는 포맷으로 파일이 존재한다고 한다. 그리고 터미널이 지저분해지면 'reset'이라는 명령어를 이용하라는 팁도 주었다. (reset 이라는 명령어 말고 clear 이라는 명령어를 사용해도 상관 없다.)

ssh에 접속 한 후 cd 명령어를 이용하여 'inhere' 디렉토리에 들어간 후 ls 명령어로 'inhere' 어떤 파일이 있는지 확인해 보았다.

$ cd inhere/
$ ls -a


파일이 10개가 존재하는 것을 알 수 있다. 이 파일들을 하나 하나 열어보니 '-file07'의 내용물이 사람이 읽을 수 있는 형태였다.

$ cat ./-file07


이 파일 안에 있는 내용이 다음으로 가기 위한 비밀번호이다.

koReBOKuIDDepwhWk7jZC0RTdopnAYKh

댓글

이 블로그의 인기 게시물

OverTheWire.org Bandit Level 24 -> Level 25

OverTheWire.org Bandit Level 12 -> Level 13

OverTheWire.org Bandit Level 25 -> Level 26