1
0

2706: set 3rd party HTTP cookies as session-only

This commit is contained in:
Thorin-Oakenpants 2018-01-17 17:21:06 +13:00 committed by GitHub
parent e5c14eb700
commit 48f95f2ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1429,6 +1429,9 @@ user_pref("network.cookie.thirdparty.sessionOnly", true);
/* 2705: disable HTTP sites setting cookies with the "secure" directive (default: true) (FF52+)
* [1] https://developer.mozilla.org/Firefox/Releases/52#HTTP ***/
user_pref("network.cookie.leave-secure-alone", true);
/* 2706: set third party non-secure (i.e HTTP) cookies as session only (FF58+)
* [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1160368 ***/
user_pref("network.cookie.thirdparty.nonsecureSessionOnly", true);
/* 2710: disable DOM (Document Object Model) Storage
* [WARNING] This will break a LOT of sites' functionality.
* You are better off using an extension for more granular control ***/