Skip to content

Load a Frida script comprised of one or more Node.js modules

Notifications You must be signed in to change notification settings

frida/frida-load

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

frida-load has been deprecated. You should use frida-compile.


frida-load

Load a Frida script comprised of one or more Node.js modules.

Example

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

$ npm install frida-load

About

Load a Frida script comprised of one or more Node.js modules

Resources

Stars

Watchers

Forks

Packages

No packages published