Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
|
- 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
|