Files
WeChatDataAnalysis/tools/extract_media_keys.py
2977094657 7a7069dcf7 improvement(media): 移除进程提取密钥并优化媒体解密
- 移除 pymem/yara-python 依赖,明确仅使用 wx_key 获取密钥

- 删除 media_key_finder.py,简化媒体密钥与资源定位逻辑

- 更新媒体接口/脚本与导出说明,避免误导进程提取能力
2025-12-25 20:26:56 +08:00

28 lines
660 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
"""
已废弃:本项目不再提供任何密钥提取流程。
请使用 wx_key 获取数据库/图片密钥:
https://github.com/ycccccccy/wx_key
获取到图片密钥后,可在前端「图片密钥」步骤填写并保存,
或调用后端接口保存:
POST /api/media/keys
body: { "xor_key": "0xA5", "aes_key": "xxxxxxxxxxxxxxxx" }
"""
from __future__ import annotations
import sys
def main():
print("[DEPRECATED] 本项目不再提供密钥提取流程。")
print("请使用 wx_key 获取密钥https://github.com/ycccccccy/wx_key")
return 1
if __name__ == "__main__":
raise SystemExit(main())