1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

Updated Optional Hardening (markdown)

yokoffing
2024-07-16 13:58:35 -04:00
parent 9539ac91ef
commit 6dea11d35e
+3 -1
@@ -105,6 +105,8 @@ user_pref("browser.cache.disk.enable", false);
```javascript ```javascript
// PREF: enforce certificate pinning // PREF: enforce certificate pinning
// [ERROR] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE // [ERROR] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE
// 1 = allow user MiTM (such as your antivirus) (default)
// 2 = strict
user_pref("security.cert_pinning.enforcement_level", 2); user_pref("security.cert_pinning.enforcement_level", 2);
``` ```
@@ -186,7 +188,7 @@ user_pref("network.dns.skipTRR-when-parental-control-enabled", false);
``` ```
#### Manage exceptions #### Manage exceptions
Add sites to the [exceptions list](https://support.mozilla.org/en-US/kb/dns-over-https#w_off). Add sites to the [exceptions list](https://support.mozilla.org/en-US/kb/dns-over-https#w_off). You shouldn't need this in most normal use cases.
* `☰` *→ Settings → Privacy & Security → DNS over HTTPS → Manage Exceptions* * `☰` *→ Settings → Privacy & Security → DNS over HTTPS → Manage Exceptions*
*** ***