재미로하는 공부/Bandit

Bandit Level 11 → Level 12 (Rot13)

lowcodingpython 2022. 4. 5. 03:10
반응형

문제를 풀기 전에 Rot13에 대한 위키백과를 한번 추천드립니다.

해결 방법을 찾지 못하다가 위키백과를 통해서 한 번에 해결했습니다. 

 

ROT13 - Wikipedia

Simple encryption method ROT13 replaces each letter by its partner 13 characters further along the alphabet. For example, HELLO becomes URYYB (or, conversely, URYYB becomes HELLO again). ROT13 ("rotate by 13 places", sometimes hyphenated ROT-13) is a simpl

en.wikipedia.org


모든 소문자(az) 및 대문자(AZ)가 13자리 회전되었습니다.

bandit-level11

data.txt를 확인해보면 Rot13으로 암호화가 되어 있습니다. 

보통 인코딩, 디코딩은 구글 검색을 통해서 쉽게 가능하지만 tr 명령어를 통해서도 해당 문제를 해결할 수 있습니다.

Rot13-암호화
Rot13
https://ko.wikipedia.org/wiki/ROT13

해당 백과를 통해서 쉽게 해답을 찾을 수 있었습니다. 

문제해결

반응형