[CryptoHack] Great Snakes Write up
- great_snakes_35381fca29d68d8f3f25c9fa0a9026fb.py#!/usr/bin/env python3import sys# import thisif 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)) 그냥 실행시켜주면 flag가 ..
2024. 10. 11.