From 5d508d857461155480ab6fd396a75963cbad6ea7 Mon Sep 17 00:00:00 2001 From: HJ <11689349+yokoffing@users.noreply.github.com> Date: Thu, 5 Oct 2023 23:54:14 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 92819e5..a03c99c 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -162,24 +162,26 @@ You can allow exceptions if you want to stay logged in to some sites: ### Secure DNS Setup and enforce DNS-over-HTTPS (DoH). -#### Provider -* Use the provider below for better [threat protection](https://quad9.net/service/threat-blocking/). -* :star: Create a profile with [NextDNS](https://nextdns.io/?from=xujj63g5) and follow our [configuration guide](https://github.com/yokoffing/NextDNS-Config) for greater protection from ads, trackers, and security threats. -```javascript -// PREF: set DoH provider -user_pref("network.trr.uri", "https://dns.quad9.net/dns-query"); -``` - #### Mode -* `3` has site-exceptions with a nice UI on the error page: - * Go to `☰` *→ Settings → Privacy & Security → DNS over HTTPS → Manage Exceptions* -* :warning: Set to `2` if your workplace or university causes issues with alternative DNS. +`3` has site-exceptions with a nice UI on the error page: + * Go to `☰` *→ Settings → Privacy & Security → DNS over HTTPS → Manage Exceptions* + +:warning: Set to `2` if your workplace or university causes issues with alternative DNS. ```javascript // PREF: enforce DNS-over-HTTPS (DoH) user_pref("network.trr.mode", 3); user_pref("network.dns.skipTRR-when-parental-control-enabled", false); ``` +#### Provider +Use the provider below for better [threat protection](https://quad9.net/service/threat-blocking/). + +:star: Create a profile with [NextDNS](https://nextdns.io/?from=xujj63g5) and follow our [configuration guide](https://github.com/yokoffing/NextDNS-Config) for greater protection from ads, trackers, and security threats. +```javascript +// PREF: set DoH provider +user_pref("network.trr.uri", "https://dns.quad9.net/dns-query"); +``` + *** ### Fingerprinting