Files
picoCTF/macrohard_weakedge/sol.py
2024-06-17 01:11:31 +02:00

8 lines
178 B
Python
Executable File

#!/home/maxime/.pyvenv/bin/python3
from base64 import b64decode
with open("flag_enc", 'r') as f:
text = f.read().replace(' ', '').strip() + '=='
print(b64decode(text))