Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.