disable weak ciphers

This commit is contained in:
oneflux 2025-04-21 18:32:43 -07:00
parent 627ec898b6
commit a5a458a3f4

View file

@ -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);