Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tacesrever/easy-frida
a simple tool for easyily dev/debug using frida and write module for agent. (mainly used for android)
https://github.com/tacesrever/easy-frida
Last synced: 3 months ago
JSON representation
a simple tool for easyily dev/debug using frida and write module for agent. (mainly used for android)
- Host: GitHub
- URL: https://github.com/tacesrever/easy-frida
- Owner: tacesrever
- License: mit
- Created: 2019-12-24T01:01:12.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T06:46:49.000Z (almost 2 years ago)
- Last Synced: 2024-04-07T06:32:13.129Z (7 months ago)
- Language: C++
- Homepage:
- Size: 696 KB
- Stars: 61
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rainmana - tacesrever/easy-frida - a simple tool for easyily dev/debug using frida and write module for agent. (mainly used for android) (C++)
- awesome-frida - easy-frida - A tool for easily develop frida agent script/module when reversing, including some useful frida scripts. (Projects)
README
# easy-frida
a tool for easily develop frida agent script/module when reversing# feature
* repl console with auto complete (double click tab)
![repl](repl.jpg)
notice: when doing this, your typed code will eval in frida env.
* custom command
![definecmd](definecmd.jpg)
* play with local variables in function
![interact](interact.jpg)
* 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
run`create-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