### Root android xposed installer https://repo.xposed.info/module/de.robv.android.xposed.installer SManager https://play.google.com/store/apps/details?id=os.tools.scriptmanager&hl=en&gl=US ### Getting Started With Frida On Android https://www.mavensecurity.com/blog/getting-started-with-frida-on-android ### Configuring Frida with BurpSuite and Genymotion to bypass Android SSL Pinning https://arben.sh/bugbounty/Configuring-Frida-with-Burp-and-GenyMotion-to-bypass-SSL-Pinning/ ### genymotion req Genymotion_ARM_Translation https://github.com/m9rco/Genymotion_ARM_Translation/blob/master/package/Genymotion-ARM-Translation_for_7.X.zip Gapps https://iweb.dl.sourceforge.net/project/opengapps/x86/20210314/open_gapps-x86-7.0-pico-20210314.zip ### Install frida python Frida tools 8.2.0 `pip install frida-tools==8.2.0` Frida server 12.11.18-android-x86 https://github.com/frida/frida/releases/download/12.11.18/frida-server-12.11.18-android-x86.xz ### push frida server to genymotion `adb push frida-server /data/local/tmp/` `adb shell "chmod 755 /data/local/tmp/frida-server"` `adb shell /data/local/tmp/frida-server` run echo server to burp `python server.py` ### adb cmd `adb forward tcp:27042 tcp:27042` ### frida cmd run frida `frida-ps -U` run frida trace `python frida-trace.py --no-pause` capture OkHttp using frida & `request.js` `frida -U -l request.js -U com.emeint.android.myservices --no-pause` list the installed applications in the device `frida-ps -Uai`