[WarGame] Bandit, Level 11 → Level 12
Problem

a-z와 A-Z 문자가 13번 rotate 회전(이동) 되어있다.
아래 사이트 참고해서, rot 시킴
A → N
Z → M
a → n
z → m
알파벳 순서는 아래와 같으니
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
a b c d e f g h i j k l m n o p q r s t u v w x y z
정규식으로 치면 아래와 같다고 할 수 있다.
A-Za-z → N-ZA-Mn-za-m
Solving
bandit11@bandit:~$ cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'
The password is JVNBBFSmZwKKOP0XbFXOoW8chDz5yVRv
약간 어이 없으면서도, 신박한 문제였다.
Refer
'워게임' 카테고리의 다른 글
[WarGame] Bandit, Level 13 → Level 14 (0) | 2023.03.19 |
---|---|
[WarGame] Bandit, Level 12 → Level 13 (0) | 2023.03.19 |
[WarGame] Bandit, Level 10 → Level 11 (0) | 2023.03.19 |
[WarGame] Bandit, Level 9 → Level 10 (0) | 2023.03.19 |
댓글