[Bandit-OverTheWire] Level 10 -> Level 11
두비니
·2020. 9. 20. 20:39
Bandit Level 10 → Level 11Level GoalThe password for the next level is stored in the file data.txt, which contains base64 encoded data Commands you may need to solve this levelgrep, 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
끝!
'War Games > Bandit - OverTheWire' 카테고리의 다른 글
[Bandit-OverTheWire] Level 12 -> Level 13 (0) | 2020.09.21 |
---|---|
[Bandit-OverTheWire] Level 11 -> Level 12 (0) | 2020.09.21 |
[Bandit-OverTheWire] Level 9 -> Level 10 (0) | 2020.09.20 |
[Bandit-OverTheWire] Level 8 -> Level 9 (0) | 2020.09.20 |
[Bandit-OverTheWire] Level 7 -> Level 8 (0) | 2020.09.19 |