killSSL
4 views
63c37191...
Description
killSSL for FB
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l killssl.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
setImmediate(function() {
var FBLigerConfig = ObjC.classes.FBLigerConfig;
console.log(FBLigerConfig);
// fake facebook ios ssl pinning
Interceptor.attach(FBLigerConfig['- ligerEnabled'].implementation, {
onEnter: function(args) {
console.log(args)
},
onLeave: function (retval) {
retval.replace(0);
}
});
});
Comments