From fdb93394f2d2eb5bc8668d547406af97007f5348 Mon Sep 17 00:00:00 2001 From: xaoyaoo Date: Mon, 3 Jun 2024 18:28:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AE=B9=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pywxdump/wx_info/get_wx_info.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pywxdump/wx_info/get_wx_info.py b/pywxdump/wx_info/get_wx_info.py index 76ed67a..863b5e1 100644 --- a/pywxdump/wx_info/get_wx_info.py +++ b/pywxdump/wx_info/get_wx_info.py @@ -211,6 +211,7 @@ def get_details(process, version_list: dict = None, is_logging: bool = False): for module in process.memory_maps(grouped=False): if module.path and 'WeChatWin.dll' in module.path: wechat_base_address = int(module.addr, 16) + rd['version'] = get_exe_version(module.path) if os.path.exists(module.path) else rd['version'] break if wechat_base_address == 0: error = f"[-] WeChat WeChatWin.dll Not Found"