Last active
September 24, 2022 05:29
-
-
Save sathishshan/f2c236ead0435aa6941efd4e1fb04d72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Adding/Replacing the PublicKey in mobile application (FingerPrint): | |
Generating SHA256 hash from the Burp cert: | |
// It generates Publickey from the Burp Certificate | |
$ openssl x509 -inform der -in burp_CA.der -pubkey -noout -out burp.pub | |
// It converts burp publickey to base64 encoded format | |
$ openssl rsa -pubin -in burp.pub -outform der | openssl dgst -sha256 -binary | openssl enc -base64 | |
Output: | |
// This hash value used to PATCH the application to bypass SSL Pinning | |
writing RSA key | |
r6FuyJwcyPM1h44d2lvO56f/+WmH2EKQ2h7rJAgNF5U= | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment