1 parent 211a385 commit ceb2384Copy full SHA for ceb2384
1 file changed
scripts/hook.js
@@ -1,18 +1,4 @@
1
2
-var wechatProcesses = [];
3
-Process.enumerateModules({
4
- onMatch: function(module){
5
- if(module.name.startsWith("WeChatAppEx")){
6
- wechatProcesses.push(module);
7
- console.log('Found WeChatAppEx module: ' + module.name + ' at ' + module.base);
8
- }
9
- },
10
- onComplete: function(){
11
- console.log('Module enumeration completed. Found ' + wechatProcesses.length + ' WeChatAppEx modules.');
12
13
-});
14
-
15
16
//获取WeChatAppEx.exe的基址
17
var module = Process.findModuleByName("WeChatAppEx.exe") || Process.findModuleByName('WeChatAppEx Framework')
18
0 commit comments