Bandit Level 9 → Level 10

Level Goal

The password for the next level is stored in the file data.txt in one of the few human-readable strings, preceded by several ‘=’ characters.

Commands you may need to solve this level

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


비밀번호는 data.txt에 존재하며 '=' 캐릭터 뒤에 사람이 읽을 수 있는 문자열로 존재한다.

 

data.txt

 

데이터에는 사람이 읽을 수 없는 형태의 데이터가 존재한다.

strings data.txt
.....
#pJ_
PJoZP
G^xu
========== G7w8LIi6J3kTb8A7j9LgrywtEUlyyp6s

 

strings: 사람이 읽을 수 있는 데이터만 표기한다.

+ Recent posts