Skip to content

Commit 8f524d6

Browse files
disable CSP Level 2 Reporting, #1981
1 parent 8cf514d commit 8f524d6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

user.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -558,17 +558,19 @@ user_pref("network.IDN_show_punycode", true);
558558
* [1] https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=pdf.js+firefox ***/
559559
user_pref("pdfjs.disabled", false); // [DEFAULT: false]
560560
user_pref("pdfjs.enableScripting", false); // [FF86+]
561-
/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] */
561+
/* 2624: disable middle click on new tab button opening URLs or searches using clipboard [FF115+] ***/
562562
user_pref("browser.tabs.searchclipboardfor.middleclick", false); // [DEFAULT: false NON-LINUX]
563563
/* 2630: disable content analysis by DLP (Data Loss Prevention) agents
564564
* DLP agents are background processes on managed computers that allow enterprises to monitor locally running
565565
* applications for data exfiltration events, which they can allow/block based on customer defined DLP policies.
566566
* 0=Block all requests, 1=Warn on all requests (which lets the user decide), 2=Allow all requests
567-
* [1] https://github.com/chromium/content_analysis_sdk */
567+
* [1] https://github.com/chromium/content_analysis_sdk ***/
568568
user_pref("browser.contentanalysis.enabled", false); // [FF121+] [DEFAULT: false]
569569
user_pref("browser.contentanalysis.default_result", 0); // [FF127+] [DEFAULT: 0]
570-
/* 2635: disable referrer and storage access for resources injected by content scripts [FF139+] */
570+
/* 2635: disable referrer and storage access for resources injected by content scripts [FF139+] ***/
571571
// user_pref("privacy.antitracking.isolateContentScriptResources", true);
572+
/* 2640: disable CSP Level 2 Reporting [FF140+] ***/
573+
user_pref("security.csp.reporting.enabled", false);
572574

573575
/** DOWNLOADS ***/
574576
/* 2651: enable user interaction for security by always asking where to download
@@ -1028,7 +1030,7 @@ user_pref("security.tls.version.enable-deprecated", false); // [DEFAULT: false]
10281030
* [WHY] To prevent wasting Mozilla's time with a custom setup ***/
10291031
user_pref("extensions.webcompat-reporter.enabled", false); // [DEFAULT: false]
10301032
/* 6012: enforce Quarantined Domains [FF115+]
1031-
* [WHY] https://support.mozilla.org/kb/quarantined-domains */
1033+
* [WHY] https://support.mozilla.org/kb/quarantined-domains ***/
10321034
user_pref("extensions.quarantinedDomains.enabled", true); // [DEFAULT: true]
10331035
/* 6050: prefsCleaner: reset previously active items removed from arkenfox FF128+ ***/
10341036
// user_pref("privacy.clearOnShutdown.cache", "");

0 commit comments

Comments
 (0)