[De1CTF2019]xorz
[De1CTF2019]xorz
附件:
from itertools import *
from data import flag,plain
key=flag.strip("de1ctf{").strip("}")
assert(len(key)<38)
salt="WeAreDe1taTeam"
ki=cycle(key)
si=cycle(salt)
cipher = ''.join([hex(ord(p) ^ ord(next(ki)) ^ ord(next(si)))[2:].zfill
原创
2021-08-02 22:08:36 ·
1592 阅读 ·
0 评论