首页 > 其他 > 详细

xctf --Hctf2014 Quals write up

时间:2016-02-10 15:23:16      阅读:393      评论:0      收藏:0      [点我收藏+]

描述

猫流大大发现一个女神,你能告诉我女神的名字么(名字即是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 :爱新觉罗启星

 

 

xctf --Hctf2014 Quals write up

原文:http://www.cnblogs.com/philippica/p/5185973.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!