mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 06:22:03 -08:00
disable weak ciphers
This commit is contained in:
parent
627ec898b6
commit
a5a458a3f4
1 changed files with 11 additions and 1 deletions
|
|
@ -665,4 +665,14 @@ defaultPref("browser.tabs.remote.separatePrivilegedMozillaWebContentProcess", tr
|
|||
defaultPref("dom.ipc.keepProcessesAlive.web", 0);
|
||||
|
||||
// Just in case
|
||||
defaultPref("javascript.options.wasm_shared_memory", false);
|
||||
defaultPref("javascript.options.wasm_shared_memory", false);
|
||||
|
||||
// Disable TLS 1.0 and 1.1
|
||||
user_pref("security.tls.version.min", 3); // 3 = TLS 1.2
|
||||
user_pref("security.tls.version.max", 4); // 4 = TLS 1.3
|
||||
|
||||
// Disable weak ciphers
|
||||
user_pref("security.ssl3.rsa_rc4_128_sha", false);
|
||||
user_pref("security.ssl3.rsa_des_ede3_sha", false);
|
||||
user_pref("security.ssl3.dhe_rsa_aes_128_sha", false);
|
||||
user_pref("security.ssl3.dhe_rsa_aes_256_sha", false);
|
||||
Loading…
Add table
Reference in a new issue