A shell script to help Android root devices mount user certifications.
The entire processes need not be executed by flushing the Magisk/KernelSU module, so there's no need to worry about module inspection tools like: momo, Memory Detector, and etc. Theoretically :>
- Open the Settings APP, and install the CA certificate;
- Go to this directory:
/data/misc/user/0/cacerts-added/*
, and expect to see the hash file of the certificate you just installed; - Execute the project's shell file with
su
privileges; - You can see the newly mounted certificates information in the Settings APP. Enjoy it!
- After reboot, the certificate mounting relationship will be invalidated;
- The path of the system certificate for Android14 is:
/apex/com.android.conscrypt/cacerts/
, and for versions below Android14, the path is:/system/etc/security/cacerts/
.
The vast majority of the code is referenced from: httptoolkit-server, it's a really great program.