Last active
September 27, 2022 07:43
-
-
Save JJK96/8d56f49f41a696468a2a53372aea6211 to your computer and use it in GitHub Desktop.
Install system certificate and start frida
This file contains 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
setenforce 0 | |
echo creating new cacerts folder | |
mount -t tmpfs tmpfs /system/etc/security/cacerts | |
echo copying user cacerts to system cacerts | |
cp /data/misc/user/0/cacerts-added/* /system/etc/security/cacerts/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A script to install user certificates as system certificates for running all network traffic through a proxy such as Burp Suite.
Start the script by copying it to the phone and sourcing it:
. ./start.sh
Prerequisites:
Steps taken in the script: