How to use the frida.DeviceManager function in frida

To help you get started, we’ve selected a few frida examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ChiChou / bagbak / lib / device.js View on Github external
const frida = require('frida')

class Device {
  static manager = new frida.DeviceManager()
  constructor(dev) {
    this.dev = dev
  }

  /**
   * 
   * @param {string} host
   * @returns {Promise}
   */
  static async connect(host) {
    const dev = await Action.manager.addRemoteDevice(host)
    return new Device(dev)
  }

  /**
   * @returns {Promise}

frida

Inject JavaScript to explore native apps on Windows, Mac, Linux, iOS and Android

LGPL-2.0 WITH WxWindows-excep…
Latest version published 4 days ago

Package Health Score

75 / 100
Full package analysis