
Great Snakes
·
Wargame/Cryptohack
1. intro 2. code 및 분석 2.1. code #!/usr/bin/env python3 import sys # import this if sys.version_info.major == 2: print("You are running Python 2, which is no longer supported. Please update to Python 3.") ords = [81, 64, 75, 66, 70, 93, 73, 72, 1, 92, 109, 2, 84, 109, 66, 75, 70, 90, 2, 92, 79] print("Here is your flag:") print("".join(chr(o ^ 0x32) for o in ords)) 2.2. 분석 대놓고 있는 플래그 #2 + python ..