From 2d44da39608390f2b0f0205c0eb3dee894c5ed48 Mon Sep 17 00:00:00 2001 From: xaoyo Date: Wed, 11 Oct 2023 14:27:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Program/get_wx_info.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Program/get_wx_info.py b/Program/get_wx_info.py index 2553876..f9f441d 100644 --- a/Program/get_wx_info.py +++ b/Program/get_wx_info.py @@ -29,7 +29,6 @@ def get_key(h_process, address): if ReadProcessMemory(h_process, void_p(address), array, 8, 0) == 0: return "None" key = ctypes.create_string_buffer(32) address = int.from_bytes(array, byteorder='little') # 逆序转换为int地址(key地址) - print(hex(address)) if ReadProcessMemory(h_process, void_p(address), key, 32, 0) == 0: return "None" key_string = bytes(key).hex() return key_string