Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oleavr/frida-agent-example
Example Frida agent written in TypeScript
https://github.com/oleavr/frida-agent-example
Last synced: 14 days ago
JSON representation
Example Frida agent written in TypeScript
- Host: GitHub
- URL: https://github.com/oleavr/frida-agent-example
- Owner: oleavr
- Created: 2018-06-29T18:19:07.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T08:08:49.000Z (5 months ago)
- Last Synced: 2024-08-01T17:38:36.937Z (3 months ago)
- Language: TypeScript
- Homepage: https://www.frida.re/
- Size: 274 KB
- Stars: 679
- Watchers: 12
- Forks: 177
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### How to compile & load
```sh
$ git clone git://github.com/oleavr/frida-agent-example.git
$ cd frida-agent-example/
$ npm install
$ frida -U -f com.example.android --no-pause -l _agent.js
```### Development workflow
To continuously recompile on change, keep this running in a terminal:
```sh
$ npm run watch
```And use an editor like Visual Studio Code for code completion and instant
type-checking feedback.