Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-10-16 17:46:33 +0000
committerSimone Bordet2014-10-16 17:46:33 +0000
commit90e9cfc535dc992b00cb4af21eb7a1ef34da433b (patch)
tree393ee21cc0babeb60ab8b8168bd3627a953a2e5e /jetty-util
parentaea5070e51ab38b37c94d00d3111d4a0b02cbbab (diff)
downloadorg.eclipse.jetty.project-90e9cfc535dc992b00cb4af21eb7a1ef34da433b.tar.gz
org.eclipse.jetty.project-90e9cfc535dc992b00cb4af21eb7a1ef34da433b.tar.xz
org.eclipse.jetty.project-90e9cfc535dc992b00cb4af21eb7a1ef34da433b.zip
447381 - Disable SSLv3 by default.
Excluded by default also SSLv2Hello.
Diffstat (limited to 'jetty-util')
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java b/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java
index dc40842fe3..ec6eef1791 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/ssl/SslContextFactory.java
@@ -223,7 +223,7 @@ public class SslContextFactory extends AbstractLifeCycle
public SslContextFactory(boolean trustAll)
{
setTrustAll(trustAll);
- addExcludeProtocols("SSL", "SSLv2", "SSLv3");
+ addExcludeProtocols("SSL", "SSLv2", "SSLv2Hello", "SSLv3");
}
/**

Back to the top