Frida CodeShare
When we have Frida injected into the app we can use code from the most popular projects on the website to do more than the standard modules that come loaded in. Refer to Frida CodeShare for the list of available modules.
Using Frida codeshare & Startup Scripts
  1. Copy the desired script from the frida codeshare website and save it to a js file. e.g. sslpinninguniversal.js for universal-android-ssl-pinning-bypass-with-frida.
  2. Run js script from Frida codeshare with -S (upper case) or –startup-script flags:
    objection explore --startup-script .\sslpinninguniversal.js
  3. It is also possible to run default Frida scripts on startup with the -s (lower case) flag:
    objection explore -s "android root disable"