From 9bce723d44bd1811823110b6d66016709be06791 Mon Sep 17 00:00:00 2001 From: HJ <11689349+yokoffing@users.noreply.github.com> Date: Fri, 29 Sep 2023 23:16:27 -0400 Subject: [PATCH] Updated Common Overrides (markdown) --- Common-Overrides.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common-Overrides.md b/Common-Overrides.md index f111115..1045372 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -103,9 +103,9 @@ user_pref("permissions.default.desktop-notification", 0); [Public Key Pinning](https://wiki.mozilla.org/SecurityEngineering/Public_Key_Pinning) (PKP) is a tool that boosts the safety of [SSL certificates](https://www.cloudflare.com/learning/ssl/what-is-an-ssl-certificate/) by linking a website to its unique security key. This process ensures that the website you're visiting is real and not fake. PKP stops any attempts to trick your computer into connecting with a fraudulent website. ``` -// PREF: relax certificate pinning for antivirus software +// PREF: relax certificate pinning // [ERROR] MOZILLA_PKIX_ERROR_KEY_PINNING_FAILURE -user_pref("security.cert_pinning.enforcement_level", 1); +user_pref("security.cert_pinning.enforcement_level", 0); ``` ***