復号するPythonプログラムを書きます。Classy Cipher
Crypto20678Every CTF starts off with a Caesar cipher, but we're more classy.
def decrypt(d, s):e = ''for c in d:e += chr((ord(c) + 0xff - s) % 0xff)return eprint(decrypt(':<M?TLH8<A:KFBG@V', ord(':') + 0xff - ord('a')))
フラグは、
actf{so_charming}









