mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
Merge remote-tracking branch 'origin/tracking' into custom
This commit is contained in:
commit
ead737cb49
3 changed files with 35 additions and 7 deletions
|
|
@ -112,6 +112,21 @@ pref("security.webauth.u2f_enable_usbtoken", false);
|
|||
// OCSP must-staple
|
||||
pref("security.ssl.enable_ocsp_must_staple", true);
|
||||
|
||||
// Enable TLS 1.3 compatmode version for bad middleware boxes?
|
||||
// This is a holdover from the later draft specs and SHOULD NOT be enabled by
|
||||
// default. ONLY use this when you explicitly need it. You have been warned!
|
||||
// Restart required.
|
||||
pref("security.ssl.enable_tls13_compat_mode", false);
|
||||
|
||||
// Enable TLS 1.3 hello downgrade sentinel?
|
||||
// One of the key protections offered by TLS 1.3 is preventing protocol downgrades
|
||||
// as part of the initial handshake.
|
||||
// Some domains, middleware and transparent routers may try to downgrade connections
|
||||
// this way (which is a bad thing!). To allow users to connect anyway this
|
||||
// check can be disabled here. Default is for the sentinel to be enabled, preventing
|
||||
// bad downgrades of the protocol version.
|
||||
pref("security.tls.hello_downgrade_check", true);
|
||||
|
||||
// If a request is mixed-content, send an HSTS priming request to attempt to
|
||||
// see if it is available over HTTPS.
|
||||
pref("security.mixed_content.send_hsts_priming", true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue