Writeup 实验吧/密码学/变异凯撒/2038

http://www.shiyanbar.com/ctf/2038

0x00

猜测,fla对应afZ,分别移位5,6,7
因此,写代码实现:

def caesar_variant_decode(ciphertext):
    ans = ''
    i = 5
    for item in ciphertext:
        ans += chr(ord(item) + i)
        i += 1

    return ans

得到flag:
flag{Caesar_variation}

你可能感兴趣的:(Writeup 实验吧/密码学/变异凯撒/2038)