Skip to content

Commit 4b2833e

Browse files
committed
Disable the Enterprise Roots preference
Fixes #560
1 parent 21d2f0c commit 4b2833e

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ Improve visibility of security-related elements, mitigate shoulder-surfing
377377
* Disable automatic reporting of TLS connection errors [ [1](https://support.mozilla.org/en-US/kb/certificate-pinning-reports) ]
378378
* Pre-populate the current URL but do not pre-fetch the certificate in the "Add Security Exception" dialog [ [1](http://kb.mozillazine.org/Browser.ssl_override_behavior) [2](https://github.com/pyllyukko/user.js/issues/210) ]
379379
* Encrypted SNI (when TRR is enabled) [ [1](https://www.cloudflare.com/ssl/encrypted-sni/) [2](https://wiki.mozilla.org/Trusted_Recursive_Resolver#ESNI) [3](https://en.wikipedia.org/wiki/Server_Name_Indication#Security_implications_(ESNI)) ]
380+
* Disable the Enterprise Roots preference [ [1](https://support.mozilla.org/en-US/kb/how-disable-enterprise-roots-preference) [2](https://github.com/pyllyukko/user.js/issues/560) ]
380381

381382
### Cipher suites
382383

Diff for: user.js

+6
Original file line numberDiff line numberDiff line change
@@ -1165,6 +1165,12 @@ user_pref("browser.ssl_override_behavior", 1);
11651165
// https://en.wikipedia.org/wiki/Server_Name_Indication#Security_implications_(ESNI)
11661166
user_pref("network.security.esni.enabled", true);
11671167

1168+
// PREF: Disable the Enterprise Roots preference
1169+
// https://support.mozilla.org/en-US/kb/how-disable-enterprise-roots-preference
1170+
// https://github.com/pyllyukko/user.js/issues/560
1171+
user_pref("security.certerrors.mitm.auto_enable_enterprise_roots" false);
1172+
user_pref("security.enterprise_roots.enabled" false);
1173+
11681174
/******************************************************************************
11691175
* SECTION: Cipher suites *
11701176
******************************************************************************/

0 commit comments

Comments
 (0)