forked from Hamz-a/boring-flutter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate_frida_hook_ios.js
35 lines (31 loc) · 968 Bytes
/
template_frida_hook_ios.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
28
29
30
31
32
33
34
35
function log(msg) {
console.log("[" + new Date().toLocaleString() + "] " + msg);
}
var awaitForCondition = function(callback) {
var int = setInterval(function() {
if (Module.findBaseAddress("Flutter")) {
clearInterval(int);
callback();
log("Flutter framework is loaded");
return;
}
}, 0);
}
function disablePinning() {
var baseAddress = Module.findBaseAddress("Flutter");
var hookAddress = baseAddress.add(ptr("0x00000000")); // modify an offset here
Interceptor.attach(hookAddress, {
onEnter: function(args) {
log("Enter handshake.cc - ssl_verify_peer_cert()");
},
onLeave: function(retval) {
log("Disable certificate validation/pinning");
retval.replace(0x0);
}
});
}
if (ObjC.available) {
awaitForCondition(disablePinning);
} else {
log("Error: Objective-C runtime is not available!");
}