From 6dde500e07e65ed02ccf960d6e0713a6ebbec12f Mon Sep 17 00:00:00 2001 From: SiYuan <863909694@qq.com> Date: Wed, 2 Apr 2025 14:12:59 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=82=E9=85=8D=E5=BE=AE=E4=BF=A14.0.3?= =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=89=88=EF=BC=8C=E4=BF=AE=E5=A4=8Dbiz.db?= =?UTF-8?q?=E4=B8=8D=E5=AD=98=E5=9C=A8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wxManager/decrypt/wx_info_v4.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wxManager/decrypt/wx_info_v4.py b/wxManager/decrypt/wx_info_v4.py index f901f2d..0a0cc0c 100644 --- a/wxManager/decrypt/wx_info_v4.py +++ b/wxManager/decrypt/wx_info_v4.py @@ -483,7 +483,9 @@ def dump_wechat_info_v4(pid) -> WeChatInfo | None: # print(wx_dir_cnt) if not wechat_info.wx_dir: return wechat_info - db_file_path = os.path.join(wechat_info.wx_dir, 'biz', 'biz.db') + db_file_path = os.path.join(wechat_info.wx_dir, 'favorite', 'favorite_fts.db') + if not os.path.exists(db_file_path): + db_file_path = os.path.join(wechat_info.wx_dir, 'head_image', 'head_image.db') with open(db_file_path, 'rb') as f: buf = f.read() wechat_info.key = get_key(pid, process_handle, buf)