Notice
Recent Posts
Recent Comments
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

CHIqueen

UMDCTF Fragile Foundations 본문

프로그래밍/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}

Comments