프로그래밍/Python
UMDCTF Fragile Foundations
CHIqueen
2020. 4. 23. 16:22
그냥 base64 decode 계속 돌려주면된다.
import base64
a=open("ciphertext2","r").read()
for i in range(100):
a = base64.b64decode(a)
print(a[:10])
돌리다가 에러 터지는데 그때 a를 출력해보면 flag가 나온다,
UMDCTF-{b@se64_15_my_f@v0r1t3_b@s3}