WeChatMsg/app/util/dat2pic.py

92 lines
2.6 KiB
Python
Raw Normal View History

2023-11-20 23:51:08 +08:00
import os
2023-11-21 21:48:54 +08:00
2023-11-20 23:51:08 +08:00
# 图片字节头信息,
# [0][1]为jpg头信息
# [2][3]为png头信息
# [4][5]为gif头信息
pic_head = [0xff, 0xd8, 0x89, 0x50, 0x47, 0x49]
# 解密码
decode_code = 0
def get_code(file_path):
"""
自动判断文件类型并获取dat文件解密码
:param file_path: dat文件路径
:return: 如果文件为jpg/png/gif格式则返回解密码否则返回-1
"""
if os.path.isdir(file_path):
return -1, -1
2023-11-24 20:16:01 +08:00
# if file_path[-4:] != ".dat":
# return -1, -1
2023-11-20 23:51:08 +08:00
dat_file = open(file_path, "rb")
dat_read = dat_file.read(2)
2023-11-21 21:48:54 +08:00
# print(dat_read)
2023-11-20 23:51:08 +08:00
head_index = 0
while head_index < len(pic_head):
# 使用第一个头信息字节来计算加密码
# 第二个字节来验证解密码是否正确
code = dat_read[0] ^ pic_head[head_index]
idf_code = dat_read[1] ^ code
head_index = head_index + 1
2023-12-03 21:25:50 +08:00
if idf_code == pic_head[head_index]:
dat_file.close()
return head_index, code
2023-11-20 23:51:08 +08:00
head_index = head_index + 1
2023-11-21 21:48:54 +08:00
dat_file.close()
2023-11-20 23:51:08 +08:00
print("not jpg, png, gif")
return -1, -1
def decode_dat(file_path, out_path):
"""
解密文件并生成图片
:param file_path: dat文件路径
:return:
"""
2023-11-28 21:51:49 +08:00
if not os.path.exists(file_path):
return None
2023-11-20 23:51:08 +08:00
file_type, decode_code = get_code(file_path)
if decode_code == -1:
return
2023-12-07 00:19:16 +08:00
filename = os.path.basename(file_path)
2023-11-20 23:51:08 +08:00
if file_type == 1:
2023-11-21 21:48:54 +08:00
pic_name = os.path.basename(file_path)[:-4] + ".jpg"
2023-11-20 23:51:08 +08:00
elif file_type == 3:
2023-12-07 00:19:16 +08:00
pic_name = filename[:-4] + ".png"
2023-11-20 23:51:08 +08:00
elif file_type == 5:
2023-12-07 00:19:16 +08:00
pic_name = filename[:-4] + ".gif"
2023-11-20 23:51:08 +08:00
else:
2023-12-07 00:19:16 +08:00
pic_name = filename[:-4] + ".jpg"
2023-11-20 23:51:08 +08:00
file_outpath = os.path.join(out_path, pic_name)
2023-11-22 21:12:14 +08:00
if os.path.exists(file_outpath):
return file_outpath
2023-11-21 21:48:54 +08:00
with open(file_path, 'rb') as file_in:
data = file_in.read()
# 对数据进行异或加密/解密
with open(file_outpath, 'wb') as file_out:
2023-12-03 21:25:50 +08:00
file_out.write(bytes([byte ^ decode_code for byte in data]))
2023-11-21 21:48:54 +08:00
print(file_path, '->', file_outpath)
return file_outpath
2023-11-20 23:51:08 +08:00
def find_datfile(dir_path, out_path):
"""
获取dat文件目录下所有的文件
:param dir_path: dat文件目录
:return:
"""
files_list = os.listdir(dir_path)
for file_name in files_list:
file_path = dir_path + "\\" + file_name
decode_dat(file_path, out_path)
if __name__ == "__main__":
2023-11-24 20:16:01 +08:00
path = "E:\86390\Documents\WeChat Files\wxid_27hqbq7vx5hf22\FileStorage\CustomEmotion\\71\\"
2023-11-20 23:51:08 +08:00
outpath = "D:\\test"
if not os.path.exists(outpath):
os.mkdir(outpath)
2023-11-21 21:48:54 +08:00
find_datfile(path, outpath)