I've learned that if you shuffle your text, it's
elrlay hrda to tlle htaw eht nioiglra nutpi aws.
Find the text censored with question marks in output_censored.txt and
surround it with DUCTF{}.
Author: hashkitten
import randomPERM =list(range(16))random.shuffle(PERM)defapply_perm(s):assertlen(s)==16return''.join(s[PERM[p]] for p inrange(16))for line inopen(0): line = line.strip()print(line, '->', apply_perm(line))