Objection

Update

pip3 install -U objection

Patching an APK

objection patchapk --source app-release.apk

Explore APK

First you will need to start the Frida server (either you patched the APK to run Frida when starting or you previously started the Frida's server).

objection -g com.package.package explore

Disable SSL Pinning

android sslpinning disable

Early Instrumentation

objection explore --startup-command 'android sslpinning disable'
objection explore --startup-script ssl-pinning.js

List activities

List classes

Simple hooks for each Class method

Launch Activity

Hook return_value

Making a patch permanent

Last updated

Was this helpful?