Saturday 1 September 2018

CTFlearn - SO MANY 64S



https://beta.ctflearn.com/problems/121
Cryptography
voidmercy


Sample Code:
import base64

with open("flag.txt",encoding = 'utf-8') as f:

ctext=f.read()

while True:
  try:
    ctext=base64.b64decode(ctext)
  except Exception as e:
    print(ctext)
    break





No comments:

Post a Comment

Calvin Work A) My Study Plan B) My CTF Record C) My Python Code-  github    1) Crypto    2) Crunch in python (generate d...