[OvertheWire] bandit 1-34문제풀이

[OverTheWire] bandit9 -> bandit10 풀이

Rabbit foot 2024. 12. 12. 13:38
반응형
SMALL

bandit9 -> bandit10

 

[1] bandit10 비밀번호는 data.txt 파일에 있으며, human-readable , several '=' 되어있다.

bandit9 -> bandit10

[2] bandit9@bandit: ~$ ls -al

     data.txt 파일 확인

 

[3] bandit9@bandit: ~$ cat data.txt

     약간의 영어와 알수없는 문자들 나옴, Binary file이다. 

    strings 명령어와 grep 명령어를 사용

 

[4] bandit9@bandit: ~$ strings data.txt | grep "==="

 

[9] bandit9 비밀번호를 알수 있다.

반응형
LIST