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.
|
|
- from base64 import *
- with open("base", "r") as file:
- text = file.read()
- decoded = ""
- while True:
- decoded = b64decode(text)
- text = decoded
- if(text.find("CTF{") != -1):
- break
- print text
|