├── .gitignore ├── Core ├── AddressSource.end ├── AddressSource.head ├── FridaTools.js └── WeChatAppEx.exe │ ├── address_8447_x64.json │ ├── address_8461_x64.json │ ├── address_8501_x64.json │ ├── address_8519_x64.json │ ├── address_8529_x64.json │ ├── address_8531_x64.json │ ├── address_8555_x64.json │ └── hook.js ├── README.md ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.venv/ 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /Core/AddressSource.end: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/AddressSource.end -------------------------------------------------------------------------------- /Core/AddressSource.head: -------------------------------------------------------------------------------- 1 | var address = -------------------------------------------------------------------------------- /Core/FridaTools.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8447_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8447_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8461_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8461_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8501_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8501_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8519_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8519_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8529_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8529_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8531_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8531_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/address_8555_x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/address_8555_x64.json -------------------------------------------------------------------------------- /Core/WeChatAppEx.exe/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/Core/WeChatAppEx.exe/hook.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuweiping/WeChatOpenDevTools/HEAD/requirements.txt --------------------------------------------------------------------------------