Commit 83e03fe5 authored by akrherz's avatar akrherz

OF-861 Disable SSLv3 for HTTPBind and Admin Console

parent eebb2ffe
......@@ -144,6 +144,7 @@ public class AdminConsolePlugin implements Plugin {
}
final SslContextFactory sslContextFactory = new SslContextFactory();
sslContextFactory.addExcludeProtocols("SSLv3");
sslContextFactory.setTrustStorePassword(SSLConfig.gets2sTrustPassword());
sslContextFactory.setTrustStoreType(SSLConfig.getStoreType());
sslContextFactory.setKeyStorePath(SSLConfig.getKeystoreLocation());
......
......@@ -221,6 +221,7 @@ public final class HttpBindManager {
}
final SslContextFactory sslContextFactory = new SslContextFactory();
sslContextFactory.addExcludeProtocols("SSLv3");
sslContextFactory.setTrustStorePassword(SSLConfig.getc2sTrustPassword());
sslContextFactory.setTrustStoreType(SSLConfig.getStoreType());
sslContextFactory.setKeyStorePath(SSLConfig.getKeystoreLocation());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment