解锁并提取Linux客户端微信数据库 (vibe coded)
1# Linux-specific helpers for key extraction on native WeChat (AppImage) builds.
2
3from .paths import find_wechat_files_path
4from .memscan import find_wechat_pids, scan_memory_for_raw_keys, extract_all_keys, extract_image_key
5
6__all__ = [
7 "find_wechat_files_path",
8 "find_wechat_pids",
9 "scan_memory_for_raw_keys",
10 "extract_all_keys",
11 "extract_image_key",
12]