easyctf-2017/decode-me/sol.py

7 lines
118 B
Python
Raw Normal View History

2017-02-26 17:43:50 +00:00
flag = open('encrypted_flag.txt', 'r').read()
while "easyctf" not in flag:
flag = flag.decode('base64')
print flag