添加注释,优化代码
This commit is contained in:
parent
f4b33cc989
commit
8045ced67b
@ -15,14 +15,16 @@ ReadProcessMemory = ctypes.windll.kernel32.ReadProcessMemory
|
|||||||
void_p = ctypes.c_void_p
|
void_p = ctypes.c_void_p
|
||||||
|
|
||||||
|
|
||||||
def get_info_without_key(pid, address, n_size=64):
|
# 读取内存中的字符串(非key部分)
|
||||||
|
def get_info_without_key(h_process, address, n_size=64):
|
||||||
array = ctypes.create_string_buffer(n_size)
|
array = ctypes.create_string_buffer(n_size)
|
||||||
if ReadProcessMemory(void_p(pid), void_p(address), array, n_size, 0) == 0: return "None"
|
if ReadProcessMemory(h_process, void_p(address), array, n_size, 0) == 0: return "None"
|
||||||
array = bytes(array).split(b"\x00")[0] if b"\x00" in array else bytes(array)
|
array = bytes(array).split(b"\x00")[0] if b"\x00" in array else bytes(array)
|
||||||
text = array.decode('utf-8', errors='ignore')
|
text = array.decode('utf-8', errors='ignore')
|
||||||
return text.strip() if text.strip() != "" else "None"
|
return text.strip() if text.strip() != "" else "None"
|
||||||
|
|
||||||
|
|
||||||
|
# 读取内存中的key
|
||||||
def get_key(h_process, address):
|
def get_key(h_process, address):
|
||||||
array = ctypes.create_string_buffer(8)
|
array = ctypes.create_string_buffer(8)
|
||||||
if ReadProcessMemory(h_process, void_p(address), array, 8, 0) == 0: return "None"
|
if ReadProcessMemory(h_process, void_p(address), array, 8, 0) == 0: return "None"
|
||||||
@ -33,13 +35,15 @@ def get_key(h_process, address):
|
|||||||
return key_string
|
return key_string
|
||||||
|
|
||||||
|
|
||||||
|
# 读取文件版本
|
||||||
def get_file_version(file_path):
|
def get_file_version(file_path):
|
||||||
info = win32api.GetFileVersionInfo(file_path, "\\")
|
info = win32api.GetFileVersionInfo(file_path, "\\")
|
||||||
ms,ls = info['FileVersionMS'],info['FileVersionLS']
|
ms, ls = info['FileVersionMS'], info['FileVersionLS']
|
||||||
file_version = f"{win32api.HIWORD(ms)}.{win32api.LOWORD(ms)}.{win32api.HIWORD(ls)}.{win32api.LOWORD(ls)}"
|
file_version = f"{win32api.HIWORD(ms)}.{win32api.LOWORD(ms)}.{win32api.HIWORD(ls)}.{win32api.LOWORD(ls)}"
|
||||||
return file_version
|
return file_version
|
||||||
|
|
||||||
|
|
||||||
|
# 读取微信信息(key, name, account, mobile, mail)
|
||||||
def read_info(version_list):
|
def read_info(version_list):
|
||||||
wechat_process = []
|
wechat_process = []
|
||||||
result = []
|
result = []
|
||||||
@ -88,13 +92,16 @@ def read_info(version_list):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
# 读取微信各版本偏移
|
||||||
version_list = json.load(open("version_list.json", "r", encoding="utf-8"))
|
version_list = json.load(open("version_list.json", "r", encoding="utf-8"))
|
||||||
result = read_info(version_list)
|
result = read_info(version_list) # 读取微信信息
|
||||||
if isinstance(result, str):
|
|
||||||
|
print("=" * 32)
|
||||||
|
if isinstance(result, str): # 输出报错
|
||||||
print(result)
|
print(result)
|
||||||
else:
|
else: # 输出结果
|
||||||
print("=" * 32)
|
for i, rlt in enumerate(result):
|
||||||
for i in result:
|
for k, v in rlt.items():
|
||||||
for k, v in i.items():
|
|
||||||
print(f"[+] {k:>7}: {v}")
|
print(f"[+] {k:>7}: {v}")
|
||||||
print("=" * 32)
|
print(end="-" * 32 + "\n" if i != len(result) - 1 else "")
|
||||||
|
print("=" * 32)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# <center>PyWxDump</center>
|
# <center>PyWxDump</center>
|
||||||
|
|
||||||
* 更新日志(如果有[version_list.json](./Program/version_list.json)缺少的版本,请帮忙添加。)
|
* 更新日志(发现[version_list.json](./Program/version_list.json)缺失或错误,请提交[issues](https://github.com/xaoyaoo/PyWxDump/issues))。)
|
||||||
* 2023.10.09 获取key基址偏移可以根据微信文件夹获取,不需要输入key
|
* 2023.10.09 获取key基址偏移可以根据微信文件夹获取,不需要输入key
|
||||||
* 2023.10.09 优化代码,删减没必要代码,重新修改获取基址代码,加快运行速度(需要安装新的库 pymem)
|
* 2023.10.09 优化代码,删减没必要代码,重新修改获取基址代码,加快运行速度(需要安装新的库 pymem)
|
||||||
* 2023.10.07 修改获取基址内存搜索方式,防止进入死循环
|
* 2023.10.07 修改获取基址内存搜索方式,防止进入死循环
|
||||||
@ -15,8 +15,8 @@
|
|||||||
|
|
||||||
该分支是[SharpWxDump](https://github.com/AdminTest0/SharpWxDump)的经过重构python语言版本,同时添加了一些新的功能。
|
该分支是[SharpWxDump](https://github.com/AdminTest0/SharpWxDump)的经过重构python语言版本,同时添加了一些新的功能。
|
||||||
|
|
||||||
*如果觉得好用的话的话,帮忙点个[](https://github.com/xaoyaoo/PyWxDump/)
|
<strong>超想要star,走过路过帮忙点[](https://github.com/xaoyaoo/PyWxDump/)
|
||||||
呗*
|
呗,谢谢啦~</strong>
|
||||||
|
|
||||||
## 二、使用方法
|
## 二、使用方法
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user