Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NVISOsecurity/MagiskTrustUserCerts
A Magisk/KernelSU module that automatically adds user certificates to the system root CA store
https://github.com/NVISOsecurity/MagiskTrustUserCerts
Last synced: about 1 month 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/MagiskTrustUserCerts
- Owner: NVISOsecurity
- Created: 2017-12-15T15:22:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-10T15:02:48.000Z (about 1 year ago)
- Last Synced: 2024-10-29T17:58:06.497Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 1,753
- Watchers: 43
- Forks: 207
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - NVISOsecurity/MagiskTrustUserCerts - A Magisk/KernelSU module that automatically adds user certificates to the system root CA store (Shell)
README
# Magisk 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.## Accompanying blogpost
[Intercepting HTTPS Traffic from Apps on Android 7+ using Magisk & Burp](https://blog.nviso.be/2017/12/22/intercepting-https-traffic-from-apps-on-android-7-using-magisk-burp/)### Installation
1. Install [Magisk](https://forum.xda-developers.com/apps/magisk/official-magisk-v7-universal-systemless-t3473445)
2. Zip files `zip -r AlwaysTrustUserCerts.zip ./*` or download zip from releases
3. Install in Magisk
4. Install client certificates through [normal flow](https://support.portswigger.net/customer/portal/articles/1841102-installing-burp-s-ca-certificate-in-an-android-device)
5. Restart your device. Certificate copying happens during boot.
6. The installed user certificates can now be found in the system store.### Adding 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
#### 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