IDAFrida
A simple IDA plugin to generate FRIDA script.
- Edit template for functions or you can use the default template.
- Select functions you want to trace in function window
- Generate & inject
default template
IDAFrida applies template to all selected functions and then generate a single frida script.
try {
Interceptor.attach(Module.findBaseAddress("[filename]").add([offset]), {
onEnter: function (args) {
console.log("enter: [funcname]");
},
onLeave: function (arg) {
console.log("leave: [funcname]");
}
});
}
catch(err) {
console.log(err);
}