2020
11-29
11-29
Python解析微信dat文件的方法
今天想查看某个微信聊天记录的图片内容,查看文件记录全部是dat文件,因此,开始了一顿百度+操作!先贴代码:importosdefimageDecode(dat_dir,dat_file_name):dat_read=open(dat_dir,"rb")ifnotos.path.exists(target_path):os.makedirs(target_path)out=target_path+"\\"+dat_file_name+".png"png_write=open(out,"wb")fornowindat_read:fornowByteinnow:newByte=nowByte^xor_value...
继续阅读 >