Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frida/frida-load
Load a Frida script comprised of one or more Node.js modules
https://github.com/frida/frida-load
Last synced: about 2 months ago
JSON representation
Load a Frida script comprised of one or more Node.js modules
- Host: GitHub
- URL: https://github.com/frida/frida-load
- Owner: frida
- Created: 2015-11-06T23:27:14.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T11:16:43.000Z (over 7 years ago)
- Last Synced: 2024-04-23T22:19:46.691Z (9 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 8
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-frida - frida-load - Load a Frida script comprised of one or more Node.js modules (Deprecated, use [frida-compile](https://github.com/frida/frida-compile)) (Libraries)
README
`frida-load` has been deprecated. You should use [frida-compile](https://github.com/frida/frida-compile).
-----
# frida-load
Load a Frida script comprised of one or more Node.js modules.
## Example
```js
var frida = require('frida');
var load = require('frida-load');load(require.resolve('./agent.js'))
.then(function (source) {
frida.attach('Skype')
.then(function (session) {
session.createScript(source)
.then(...) // and so on
});
});
```## Installation
```bash
$ npm install frida-load
```