Cipher 암호 디코더

2016. 12. 7. 16:36보안 & 해킹/CTF

from string import translate, maketrans

table = maketrans('PXFR}QIVTMSZCNDKUWAGJB{LHYEO', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ{}')
cipher = 'A}FFDNEA}}HDJN}LGH}PWO'
print translate(cipher, table)


파이썬용 코드.