Skip to content

Instantly share code, notes, and snippets.

@eybisi
Created April 29, 2021 20:51
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save eybisi/c8fba27ad2135d2bd012cf63df200cad to your computer and use it in GitHub Desktop.
Save eybisi/c8fba27ad2135d2bd012cf63df200cad to your computer and use it in GitHub Desktop.
var flutter = Module.getBaseAddress("libflutter.so")
// search ssl_client, add offset of found function
Interceptor.attach(flutter.add(0x5873D4),{
onEnter: function (args) {
console.log("ssl verify called")
},
onLeave:function(retval){
console.log("retval value",retval.toInt32())
retval.replace(0x1);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment