Skip to content

Instantly share code, notes, and snippets.

@dwisiswant0
Created November 13, 2020 18:45
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save dwisiswant0/8ddedac5f31999298e230104bc25fcbb to your computer and use it in GitHub Desktop.
Save dwisiswant0/8ddedac5f31999298e230104bc25fcbb to your computer and use it in GitHub Desktop.
10-line to Install BurpSuite Certificate on Android 7+
#!/bin/bash
curl -s http://burp/cert -x http://127.0.0.1:8080 -o cacert.der
openssl x509 -inform DER -in cacert.der -out cacert.pem
export CERT_HASH=$(openssl x509 -inform PEM -subject_hash_old -in cacert.pem | head -1)
adb root && adb remount
adb push cacert.pem "/sdcard/${CERT_HASH}.0"
adb shell su -c "mv /sdcard/${CERT_HASH}.0 /system/etc/security/cacerts"
adb shell su -c "chmod 644 /system/etc/security/cacerts/${CERT_HASH}.0"
rm -rf cacert.*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment