Skip to content

Instantly share code, notes, and snippets.

@noobpk
Created December 29, 2020 07:53
Show Gist options
  • Select an option

  • Save noobpk/82048a213ca68f0d3f4008bc4a84d0b6 to your computer and use it in GitHub Desktop.

Select an option

Save noobpk/82048a213ca68f0d3f4008bc4a84d0b6 to your computer and use it in GitHub Desktop.
Install Burpsuite CA for Android
#!/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