Bandit Level 9 → Level 10

Level Goal

The password for the next level is stored in the file data.txt among of few lines of human-readable strings starting with ‘=’ characters.

Commands you may need to solve this level

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




data.txt 파일에 몇줄 사람이 읽을수 있는 라인이 잇다는대


거기서 =로 시작한다고한다..



한번 찾아보자.





이상한 문자가 이렇게 출력되었다.



여기서 사람이 읽을수있는 몇줄이 있다는데


strings 옵션을 이용해서 문자열을 찾아보자





이번에는 사람이 볼수있는 많은 문자열이 출력되었다..


이중에서 아까 =로 시작하는 애들만 찾으면되니까..


grep 명령어를 이용해서 찾아보자.







이렇게 비밀번호같이 생긴 애가 보인다.ㅋㅋ


그럼 다음단계로 넘어가보자.ㅎㅎ

'Etc > Bandit of Wargames' 카테고리의 다른 글

Level 11 -> Level 12  (0) 2014.10.21
Level 10 -> Level 11  (0) 2014.10.21
Level 8 -> Level 9  (0) 2014.10.21
Level 7 -> Level 8  (0) 2014.10.21
Level 6 -> Level 7  (0) 2014.10.20
,