您的位置:首页 > 其它

xctf --Hctf2014 Quals write up

2016-02-10 15:16 519 查看

描述

猫流大大发现一个女神,你能告诉我女神的名字么(名字即是flag)

nvshen.zip

Solution:

Extract the file and we could find a txt which contains a string like base64.Decode it:

import base64
inpt = open("nvshen.txt")
out = open("a.out","w")
u = inpt.read()
v = base64.b64decode(u)
out.write(v)

then we found it is a picture. search by image on google and then we could found the flag :爱新觉罗启星

 

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: