Skip to main content

Using Frida via Objection

For Windows users where USBFlux isn't supported, or any other use case where this is more convenient, you can use Objection to connect to the Frida server.

Prerequisites

  • A Corellium device
  • Connected to the Corellium VPN for the relevant Project
  • Objection installed on your local machine

With iOS

Connect to the device with Objection:

objection -d -N -h <WiFi IP> -g <Bundle ID> explore

You need to use your device's WiFi IP in the connection string above to avoid needing to port forward the Services IP.

With Android

Forward the Frida server port:

adb forward tcp:27042 tcp:27042

Connect to the device with Objection:

objection -d -N -h 127.0.0.1 -g <Bundle ID> explore

We use 127.0.0.1 as the host because we forwarded the port to the local machine.