From c32d1974a4a3bbd08cb03e554249913a2d848589 Mon Sep 17 00:00:00 2001 From: HJ <11689349+yokoffing@users.noreply.github.com> Date: Tue, 22 Aug 2023 21:51:50 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 815e4c5..b02412c 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -24,7 +24,7 @@ We already: * [attempt](https://github.com/yokoffing/Betterfox/blob/df5fc26a1bdccd30e01f3c1dfe69a09a2c050410/Securefox.js#L545-L550) to upgrade HTTP site navigation to HTTPS #### Option 1: Enable in private windows only -Firefox will get explicit permission from you before connecting to a site insecurely in [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) (Firefox [incognito mode](https://support.mozilla.org/en-US/kb/common-myths-about-private-browsing)). +Firefox will get explicit permission from you before connecting to a site insecurely in [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) windows (Firefox [incognito mode](https://support.mozilla.org/en-US/kb/common-myths-about-private-browsing)). ``` // PREF: enable HTTPS-Only Mode // Strict HTTPS site navigation in Private Browsing. @@ -33,7 +33,7 @@ user_pref("dom.security.https_only_mode_error_page_user_suggestions", true); ``` #### Option 2: Enable in all windows -Firefox will get explicit permission from you before connecting to a site insecurely in Normal and Private Browsing. +Firefox will get explicit permission from you before connecting to a site insecurely in Normal and Private Browsing windows. ``` // PREF: enable HTTPS-Only Mode // Strict HTTPS site navigation in Normal and Private Browsing.