[Bandit-OverTheWire] Level 9 -> Level 10

두비니

·

2020. 9. 20. 14:33

 

 

 

 

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

 

 

로그인

 

x 접속 : ssh bandit9@bandit.labs.overthewire.org -p2220
pw : UsvVyFSfZZWbi6wgC7dAFyFuR6jQQUhR

 

 

문자 '='앞에 비밀번호가 있다고 하네요 

 

일단 궁금하니깐 파일 자체를 한번 봅시다.

bandit9@bandit:~$ ls
data.txt
bandit9@bandit:~$ cat data.txt 
�L�lω;��ßOܛ��ǤX��NdT$��x7��@D@�o��+D��B��M֢�Z/,_���w���#�5���
                                                               Ў�e�&�-��Ϣ��6Q8��J�%fa��
�np�6l
|c���WW"&8��f���
��VJ�$�S~����d�
                 �p�k�U�;ֿ�v�Am��H��tɘ�3�ߘ�(ǟ�E'
                                                  ���'��:��uP�ע���������g�
!�'�
     t��!P���

 

음 일단 string을 뽑아봅시다.

 

bandit9@bandit:~$ strings data.txt 

 

그 중 =들 뒤에 있는 값들을 확인해보면

========== the*2i"4
========== password
========== is
========== truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk

password가 나옵니다.