https://github.com/nvisosecurity/alwaystrustusercerts
A Magisk/KernelSU module that automatically adds user certificates to the system root CA store
https://github.com/nvisosecurity/alwaystrustusercerts
Last synced: about 1 year ago
JSON representation
A Magisk/KernelSU module that automatically adds user certificates to the system root CA store
- Host: GitHub
- URL: https://github.com/nvisosecurity/alwaystrustusercerts
- Owner: NVISOsecurity
- Created: 2017-12-15T15:22:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-05-14T08:40:31.000Z (about 1 year ago)
- Last Synced: 2025-05-14T09:45:17.148Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 1,910
- Watchers: 39
- Forks: 223
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Always Trust User Certs
This module makes all installed user certificates part of the system certificate store, so that they will automatically be used when building the trust chain. This module makes it unnecessary to add the network_security_config property to an application's manifest.
Features:
* Support for multiple users
* Support for Magisk/KernelSU/KernelSU Next
* Support for devices with and without mainline/conscrypt updates
## Conscrypt certs or not
Depending on your Android version and Google Play Security Update version, your certificates will be either stored in `/system/etc/security/cacerts` or in `/apex/com.android.conscrypt/cacerts/`. This module handles all scenarios and should work on any device from Android 7 until Android 16.
### Installing certificates
Install the certificate as a user certificate and restart the device.
### Removing certificates
Remove the certificate from the user store through the settings and restart the device.
## Changelog
### v1.2
* Added automatic update support
### v1.1
* Fixed permission issue for non-conscrypt
* Fixed removal of certs for non-conscrypt
* Renamed repo
### v1.0
* Add support for mainline/conscrypt certificates
* Add support for multiple users
* Add support for KernelSU
### v0.4.1
* Supports Android 10
* Updated Module to be compatible with latest Magisk module template (v20.4+)
### v0.3
* The module now removes all user-installed certificates from the system store before copying them over, so that user certificates that were removed will no longer be kept in the system store.
### v0.2
* Fixed directory creation bug
* Updated Module to be compatible with latest Magisk module template (v15+)
### v0.1
* Initial release