Skip to content
forked from P4nda0s/IDAFrida

IDA Frida Plugin for tracing something interesting.

Notifications You must be signed in to change notification settings

qjx321/IDAFrida

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

IDAFrida

A simple IDA plugin to generate FRIDA script.

  1. Edit template for functions or you can use the default template.
  2. Select functions you want to trace in function window
  3. Generate & inject

image-20220119000229980

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);
    }

About

IDA Frida Plugin for tracing something interesting.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%