2022鹏城杯-简单取证
[鹏城杯 2022]简单取证
查看信息,找文件
vol.py -f file.raw imageinfo
vol.py -f file.raw --profile=WinXPSP2x86 filescan | grep jpg
导出来
vol.py -f file.raw --profile=WinXPSP2x86 dumpfiles -Q 0x0000000002325028 -D ./..
去010显示是BASE64,赛博厨子一把梭了
压缩包导出来
找到密码
vol.py -f file.raw --profile=WinXPSP2x86 cmdscan
解压出来是坐标,用脚本
from PIL import Image
im = Image.new("RGB", (350, 350), (0, 0, 0))
with open("flag.txt", "r") as f:
r = f.read()
lst = r.split("\n")
for i in lst:
x = int(i.split(" ")[0])
y = int(i.split(" ")[1])
im.putpixel((x, y), (255, 255, 255))
im.save("flag.png")
flag{a6b93e36-f097-11ec-a9b2-5254002d2b31}
标签:鹏城,2022,取证,py,raw,file From: https://www.cnblogs.com/WTT001/p/18550248