From c9dcd743b613696e0883268095005b55808705d2 Mon Sep 17 00:00:00 2001 From: HJ <11689349+yokoffing@users.noreply.github.com> Date: Sat, 30 Sep 2023 00:16:04 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 8299603..a6cc154 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -47,17 +47,6 @@ user_pref("dom.security.https_only_mode_error_page_user_suggestions", true); *** -### SameSite Cookies -[SameSite Cookies](https://github.com/yokoffing/Betterfox/blob/79b6694680e73c8cd4ebf781f87d978a06086284/Securefox.js#L141-L150) help prevent cross-site request forgery (CSRF) attacks. They are used to ensure that a website can only be accessed by the same origin that set the cookie, and not by any other website. This helps protect your browser from unauthorized access and data theft. -``` -// PREF: enable SameSite Cookies -user_pref("network.cookie.sameSite.laxByDefault", true); -user_pref("network.cookie.sameSite.noneRequiresSecure", true); -user_pref("network.cookie.sameSite.schemeful", true); -``` - -*** - ### Secure DNS Setup and enforce DNS-over-HTTPS (DoH).