实验吧----打不开的文件

版权声明:莫者 https://blog.csdn.net/weixin_40709439/article/details/81561951

解题链接: http://ctf5.shiyanbar.com/423/stego/xx.gif

点开出现

老套路,跟上一篇一样

脚本下载

import requests

response = requests.get('http://ctf5.shiyanbar.com/423/stego/xx.gif')
cat_img = response.content

with open('xx.gif','wb') as f:
	f.write(cat_img)
	f.close()

打开下载的xx.gif,无法打开

在winhex打开,发现文件头不是gif的:47494638

直接添加文件头

修复好打开gif动图,每一帧的画面有部分的key

用stegsolve的frame browser打开

 

 

 

 dGhpcyBpcyBhlGdpZg==

base64解密即可

猜你喜欢

转载自blog.csdn.net/weixin_40709439/article/details/81561951