시작
안녕하세요 :D
이번엔 Level 10 → Level 11
을 풀어볼게요!
root@goorm:/workspace/LCH_Server# ssh bandit10@bandit.labs.overthewire.org -p2220
문제
The password for the next level is stored in the file data.txt, which contains base64 encoded data
data.txt
안에 패스워드가 base64
로 인코딩되어 있다고 하네요.
base64
: 바이너리 데이터를 문자 코드에 영향을 받지 않는 공통 ASCII 문자로 표현하기 위해 만들어진 인코딩
base64
명령어를 사용하여 디코딩하면 해결될 듯 합니다.
bandit10@bandit:~$ base64 --decode data.txt
The password is IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR
bandit11
의 패스워드는 IFukwKGsFW8MOq3IRFqrxE1hxTNEbUPR
였습니다!
마무리
어.. 깔끔하게 끝났네요.
다음엔 Level 11 → Level 12
에서 만나요 :D
'CTF_Write_UP > overthewire' 카테고리의 다른 글
Overthewire : Bandit Level 12 → Level 13 (2) | 2019.04.18 |
---|---|
Overthewire : Bandit Level 11 → Level 12 (0) | 2019.04.14 |
Overthewire : Bandit Level 9 → Level 10 (0) | 2019.04.11 |
Overthewire : Bandit Level 8 → Level 9 (0) | 2019.04.11 |
Overthewire : Bandit Level 7 → Level 8 (0) | 2019.04.11 |