星期五的本机功能
该模块为您提供了扩展的NativeFunction类。 它应在frida脚本内使用。 参见例如:
例子
const ExNativeFunction = require('frida-ex-nativefunction')
const openAddr = Module.findExportByName('libc.so', 'open')
const open = new ExNativeFunction(openAddr, 'int', ['pointer', 'int'])
console.log(open.address) // The provided openAddr
console.log(open.retType) // The provided return type
console.log(open.argTypes) // The provid
1