Ingin menangid
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
245 B

5 years ago
  1. from base64 import *
  2. with open("base", "r") as file:
  3. text = file.read()
  4. decoded = ""
  5. while True:
  6. decoded = b64decode(text)
  7. text = decoded
  8. if(text.find("CTF{") != -1):
  9. break
  10. print text