Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 921 Bytes

README.md

File metadata and controls

44 lines (26 loc) · 921 Bytes

easy-frida

a tool for easily develop frida agent script/module when reversing

feature

  • repl console with auto complete (double click tab)

repl

notice: when doing this, your typed code will eval in frida env.

  • custom command

definecmd

  • play with local variables in function

interact

  • many commonly used agent lib functions in agent/ (use in code: import * as xxx from 'fridalib/xxx')

usage

install

$ git clone https://github.com/tacesrever/easy-frida.git
$ cd agent/dist/
$ npm install
$ npm link
$ cd easy-frida/
$ npm install
$ npm link

use

runcreate-injector at empty directory (see scripts/create-injector.js)

open the directory with vscode (or other ide with typescript support)

edit target in injector.js

write your frida code in agent/main.ts

run injector.js with node