Frida CodeShare

Follow below steps to learn how to use Frida CodeShare, based on an SSL Pinning bypass example

  1. Download the X (Twitter) APK:

https://www.apkmirror.com/apk/x-corp/twitter2. Install the app on your connected Android device:1

abd install –r [filename].apk

3. Configure Burp Suite to intercept the traffic, as mentioned in the previous section:3.7 Burp Suite Android Setup4. Make sure frida-server is runing on the device:

adb root
adb shell "/data/local/tmp/frida-server &"

5. Bypass SSL pinning via the CodeShare script:https://codeshare.frida.re/@akabe1/frida-multiple-unpinning/

frida-ps -Ua
frida --codeshare akabe1/frida-multiple-unpinning -U -p [pid]

6. Try other Frida scripts for common use cases and apps. For example root detection bypass.

Last updated