摘要: Misc_water 先分析图片hex值,发现给的图是由一头一尾两个png和中间一个倒置的jpg组成的。于是分别提取并把jpg正过来 with open('1','rb') as f: with open('flag.jpg','wb') as g: g.write(f.read()[::-1]) 阅读全文
posted @ 2022-07-04 06:57 zysgmzb 阅读(669) 评论(2) 推荐(0) 编辑