Created
August 13, 2018 13:26
-
-
Save interference-security/fbe9718f58cb2c143dce18f534aa1f2d to your computer and use it in GitHub Desktop.
Proxy in Android N and above
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
#Source: https://blog.ropnop.com/configuring-burp-suite-with-android-nougat/ | |
openssl x509 -inform DER -in cacert.der -out cacert.pem | |
mv cacert.pem `openssl x509 -inform PEM -subject_hash_old -in cacert.pem |head -1`.0 | |
adb root | |
adb remount | |
adb push <cert>.0 /sdcard/ | |
mv /sdcard/<cert>.0 /system/etc/security/cacerts/ | |
chmod 644 /system/etc/security/cacerts/<cert>.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment