OverTheWire.org Bandit Level 7 -> Level 8

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

Bandit Level 7 → Level 8

Level Goal

The password for the next level is stored in the file data.txt next to the word millionth

Commands you may need to solve this level

grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd

Level 7에서 Level 8로 가기 위해서는 data.txt 파일안에 있는 비밀번호를 읽어야한다. data.txt 안에 비밀번호는 'millionth' 단어 옆에 위치해 있다고 한다.

먼저 ssh에 접속한다.


파일을 한 번 열어보자
$ cat data.txt


상당히 많은 양의 정보가 나오는 것을 알 수 있다.
위에서 'millionth'라는 단어 옆에 비밀번호가 존재한다는 힌트를 이용하자.
특정 단어를 찾는 명령어 grep을 사용해보자
$ grep millionth data.txt


millionth 단어 옆에 위치하는 저것이 비밀번호이다.
cvX2JJa4CFALtqS87jk27qwqGhBM9plV

댓글

이 블로그의 인기 게시물

OverTheWire.org Bandit Level 24 -> Level 25

OverTheWire.org Bandit Level 12 -> Level 13

OverTheWire.org Bandit Level 25 -> Level 26