File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,8 +119,6 @@ Here's the list with this config:
119
119
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (0xc02f)
120
120
Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (0xc00a)
121
121
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (0xc014)
122
- Cipher Suite: TLS_DHE_RSA_WITH_AES_256_CBC_SHA (0x0039)
123
- Cipher Suite: TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA (0x0088)
124
122
Cipher Suite: TLS_RSA_WITH_AES_128_CBC_SHA (0x002f)
125
123
Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA (0x0035)
126
124
Original file line number Diff line number Diff line change @@ -487,11 +487,13 @@ user_pref("security.ssl3.ecdhe_rsa_aes_128_gcm_sha256", true);
487
487
/* ciphers with DHE and > 128bits
488
488
* des-ede3 = 168 bits
489
489
*/
490
- user_pref ( "security.ssl3.dhe_rsa_camellia_256_sha" , true ) ;
491
490
//user_pref("security.ssl3.dhe_dss_camellia_256_sha", true);
492
- user_pref ( "security.ssl3.dhe_rsa_aes_256_sha" , true ) ;
493
491
//user_pref("security.ssl3.dhe_dss_aes_256_sha", true);
494
492
493
+ // susceptible to the logjam attack – https://weakdh.org/
494
+ user_pref ( "security.ssl3.dhe_rsa_camellia_256_sha" , false ) ;
495
+ user_pref ( "security.ssl3.dhe_rsa_aes_256_sha" , false ) ;
496
+
495
497
// ciphers with DSA (max 1024 bits)
496
498
user_pref ( "security.ssl3.dhe_dss_aes_128_sha" , false ) ;
497
499
user_pref ( "security.ssl3.dhe_dss_aes_256_sha" , false ) ;
You can’t perform that action at this time.
0 commit comments