Skip to content
Snippets Groups Projects
Commit 9e4bd85c authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Merge branch 'abrowser-logjam' into 'belenos'

abrowser: avoid logjam attack

Copied from @ruben one at
http://git.savannah.gnu.org/cgit/gnuzilla.git/commit/?id=58f127c1d5f8c89b9e55803701f734756d1cfa2a

See merge request !108
parents 5964b3a1 71a340de
No related branches found
No related tags found
No related merge requests found
......@@ -175,3 +175,10 @@ pref("loop.enabled",false);
// Use old style preferences, that allow javascript to be disabled
pref("browser.preferences.inContent",false);
// Avoid logjam attack
pref("security.ssl3.dhe_rsa_aes_128_sha", false);
pref("security.ssl3.dhe_rsa_aes_256_sha", false);
pref("security.ssl3.dhe_dss_aes_128_sha", false);
pref("security.ssl3.dhe_rsa_des_ede3_sha", false);
......@@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
VERSION=38
VERSION=39
. ./config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment