OverTheWire: Level Goal
We're hackers, and we are good-looking. We are the 1%. <!-- Please read and accept the Rules! --> 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. Co
overthewire.org
The password for the next level is stored in the file data.txt, which contains base64 encoded data
data.txt에 password가 존재하는데 base64로 인코딩 되어있는 것 같다.
우선 데이터를 읽어보자.
OverTheWire에 Base64가 해당 레벨의 Command 중 하나이니 man page를 확인해보자.
man page 내용은 아래와 같다.
base64로 인코딩된 데이터라고 했으니 디코딩 시키면 패스워드가 나올거 같다.
디코딩 옵션인 -d / --decode를 사용해보자
HIT!
'CTF > Bandit' 카테고리의 다른 글
Bandit Level 9 → Level 10 [9/34] (0) | 2025.06.22 |
---|---|
Bandit Level 8 → Level 9 [8/34] (0) | 2025.05.28 |
Bandit Level 7 → Level 8 [7/34] (0) | 2025.05.28 |
Bandit Level 6 → Level 7 [6/34] (0) | 2025.05.28 |
Bandit Level 5 → Level 6 [5/34] (0) | 2025.05.28 |