Skip to content

Commit 7ebbff1

Browse files
committed
Merge pull request #18 from graste/master
LogJam related disabling of two more DH(E) ciphers
2 parents e2cadc9 + c63b500 commit 7ebbff1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,6 @@ Here's the list with this config:
119119
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (0xc02f)
120120
Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (0xc00a)
121121
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)
124122
Cipher Suite: TLS_RSA_WITH_AES_128_CBC_SHA (0x002f)
125123
Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA (0x0035)
126124

user.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -487,11 +487,13 @@ user_pref("security.ssl3.ecdhe_rsa_aes_128_gcm_sha256", true);
487487
/* ciphers with DHE and > 128bits
488488
* des-ede3 = 168 bits
489489
*/
490-
user_pref("security.ssl3.dhe_rsa_camellia_256_sha", true);
491490
//user_pref("security.ssl3.dhe_dss_camellia_256_sha", true);
492-
user_pref("security.ssl3.dhe_rsa_aes_256_sha", true);
493491
//user_pref("security.ssl3.dhe_dss_aes_256_sha", true);
494492

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+
495497
// ciphers with DSA (max 1024 bits)
496498
user_pref("security.ssl3.dhe_dss_aes_128_sha", false);
497499
user_pref("security.ssl3.dhe_dss_aes_256_sha", false);

0 commit comments

Comments
 (0)