安卓逆向frida之so层hook分析关键函数定位探究

一、基础hook

(1)获取指定 so 文件的基地址

function hook_module() {
   
    var baseAddr = Module.findBaseAddress("libnative-lib.so");
    console.log("baseAddr", baseAddr)

你可能感兴趣的:(android,javascript,开发语言)