YuKi (@fjy) 在 Frida拦截企微收发消息失败,拦截不到消息,求佬指导 中发帖
最近用Frida工具想拦截企微消息,实现自动收发,但是一直拦截不到企微发送的消息,求佬们指导
Windows x64位电脑
官网下载并安装企业微信客户端 x64位
安装 Python3.x 环境
安装 frida 工具 pip install frida-tools
查看企微的PID tasklist | findstr "WXWork"
然后写个脚本查看都有什么消息
// list_exported_functions.js
function listExportedFunctions(moduleName) {
const module = Process.findModuleByName(moduleName);
if (!module) {
console.log(`[!] 未找到模块: ${moduleName}`);
...