Skip to content

ryanking13/android-SSL-unpinning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

android-SSL-unpinning

A simple Python script which patches Android APK file to bypass SSL-pinning.

Requirements

  • Python3
  • Java

How to Run

git clone https://github.com/ryanking13/android-SSL-unpinning
cd android-SSL-unpinning

python patch.py com.apk.file.to.patch.apk

How it works

  1. Decompile the APK file using APKtool
  2. Modify AndroidManifest.xml and network_security_config.xml to trust user certificate
  3. Recompile the APK file using APKtool
  4. Sign the APK file using uber-apk-signer

References