본문 바로가기

CTF_Write_UP/overthewire

Overthewire : Bandit Level 11 → Level 12

시작

안녕하세요 :D

지난번에 이어서 를 풀어보겠습니다.

문제

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 positions

data.txt 파일에 비밀번호가 있는데, 대소문자가 13자리 씩 회전되어 있다고 하네요.

bandit11@bandit:~$ cat data.txt
Gur cnffjbeq vf 5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh

rotated by 13 positions, ROT13이 무슨 말일까요??

`ROT13 : 문자를 알파벳 뒤에 13 번째 문자로 대체하는 간단한 문자 대체 암호입니다.

13자리 씩 이동했다는 거네요. AN으로, BO로..

The password is 5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu

decoding 사이트는 굉장히 많으니 쉽게 찾으실 수 있을 겁니다!!

bandit12의 비밀번호는 5Te8Y4drgCRfCx8ugdwuEX8KFC6k2EUu 입니다!

마무리

저번 문제부터 디코딩하는 문제가 나오네요ㅎㅎ..

쉬운 문제들이라 약간 허무합니다.

Level 12 → Level 13에서 만나요 :D