writeup/Bandit

Bandit Level 9 -> Level 12

tnvori 2025. 2. 11. 19:46

더클 연남 빨강 3개 풀고 왔다.

 

 

Level 9 -> Level 10

https://overthewire.org/wargames/bandit/bandit10.html

 

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

data.txt에 human-readable인 문자열 일부가 있다고 한다. 패스워드는 그 중에서도 ‘=’ 옆에 있다.

 

human-readable인 부분을 얻기 위해선 strings를 사용할 수 있다.

 

그중에서도 ‘=’가 존재하는 부분을 확인하려면 grep을 이용하면 된다.

 

 

Level 10 -> Level 11

https://overthewire.org/wargames/bandit/bandit11.html

 

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, which contains base64 encoded data Commands you may need to solve this level grep,

overthewire.org

이번 패스워드는 base64로 인코딩되어 있다.

 

디코딩하면 될 것 같다.

https://www.base64decode.org/ko/

 

Base64 디코딩 및 인코딩 - 온라인

Base64 형식에서 디코딩해보세요. 아니면 다양한 고급 옵션으로 인코딩해보세요. 저희 사이트에는 데이터 변환하기에 사용하기 쉬운 온라인 도구가 있습니다.

www.base64decode.org

 

 

 

Level 11 -> Level 12

https://overthewire.org/wargames/bandit/bandit12.html

 

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, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 posit

overthewire.org

이번 패스워드는 rot13으로 암호화되어있다.

 

바로 디코딩한다.

https://www.useotools.com/ko/rot13

 

ROT13 인코더 및 디코더

Useotools.com의 ROT13 도구는 단 한 번의 클릭으로 ROT13 및 기타 ROT 알고리즘을 사용하여 데이터를 인코딩 및 디코딩할 수 있습니다.

www.useotools.com

 

해결

'writeup > Bandit' 카테고리의 다른 글

Bandit Level 17 -> Level 19  (0) 2025.03.04
Bandit Level 14 -> Level 17  (0) 2025.02.27
Bandit Level 12 -> Level 14  (0) 2025.02.25
Bandit Level 5 -> Level 8  (0) 2025.02.09
Bandit Level 0 -> Level 5  (0) 2025.02.05