Ingin menangid
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
245 B

  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