[Bandit-OverTheWire] Level 10 -> Level 11

두비니

·

2020. 9. 20. 20:39

 

 

Bandit Level 10 → Level 11

Level Goal

The password for the next level is stored in the file data.txt, which contains base64 encoded data

Commands you may need to solve this level

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

Helpful Reading Material

 

로그인

 

접속 : ssh bandit10@bandit.labs.overthewire.org -p2220 
pw : truKLdjsbJ5g7yyJ2X2R0o3a5HQJFuLk

 

 

data.txt안에 base64가 encoding된 파일이 있다고 합니다.

 

bandit10@bandit:~$ ls
data.txt
bandit10@bandit:~$ cat data.txt 
VGhlIHBhc3N3b3JkIGlzIElGdWt3S0dzRlc4TU9xM0lSRnFyeEUxaHhUTkViVVBSCg==

 

걍 decoding하면 끝이죠?

이렇게 사이트에서 돌려도되고

 

 

리눅스써도됩니다.

bandit11@bandit:~$ base64 -di data.txt

 

아무튼 결과는

The password is IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR

 

끝!