Troubleshooting Android APP Repinning

As I was exploring cert pinning for the first time, I went through steps and posted it in this [ http://delowar.me/starting-with-android-app-testing/ ] blog post. But I had some issue with my target application. Couldn’t install app from Google Play. So, I tried adb install target.apk and the app got installed. To get the apk, what I did was, extract the apk from my mobile [where app was installed] and then export it to my local machine.
Read full post gblog_arrow_right

Starting With Android App Testing

Installing adb: https://www.xda-developers.com/install-adb-windows-macos-linux/ Genymotion: https://www.genymotion.com/fun-zone/ Genymotion Shell: devices list adb devices If there is no device, connect adb connect ip:5555 Install python3 by downloading or from Microsoft Store and then verify it via python command. Download and run https://bootstrap.pypa.io/get-pip.py Verify it via pip3 -V command. Now our machine is ready to install frida. Install it via pip3 install frida-tools Hands on ADB: adb shell cd /data/local/tmp To find frida’s installation location:
Read full post gblog_arrow_right