-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhook.js
28 lines (22 loc) · 791 Bytes
/
hook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import {hook_dlopen,hook_fgets,hook_pthread_create,patch_pthread_create} from "./Native/bypass_ijiami.js";
import {hook_file_operation,hook_memcmp,hook_memcpy} from "./Native/bypass_ijiami.js";
import {hook_okhttp3} from "./Java/hook_okhttp3.js";
import {replace_str} from "./Native/bypass_frida_detect.js";
import {hook_fopen} from "./Native/bypass_ijiami.js";
import {hook_network } from "./Java/hook_network_detect.js";
import { dump_dex } from "./Native/dump_dex.js";
function main() {
console.log("Hello ijiami!!!");
//replace_str();
//hook_memcpy();
//hook_memcmp();
//patch_pthread_create();
//hook_dlopen();
//hook_pthread_create();
hook_fopen();
hook_fgets();
hook_network();
dump_dex();
//hook_okhttp3();
}
setImmediate(main);