SLOTH protection #631
Exclude all MD5 and SHA1 ciperhs, not just RSA based ones.
This commit is contained in:
parent
2db91a88cf
commit
21a618e6a8
|
@ -250,10 +250,7 @@ public class SslContextFactory extends AbstractLifeCycle
|
|||
{
|
||||
setTrustAll(trustAll);
|
||||
addExcludeProtocols("SSL", "SSLv2", "SSLv2Hello", "SSLv3");
|
||||
setExcludeCipherSuites(
|
||||
"^.*_RSA_.*_(MD5|SHA|SHA1)$",
|
||||
"SSL_DHE_DSS_WITH_DES_CBC_SHA",
|
||||
"SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA");
|
||||
setExcludeCipherSuites("^.*_(MD5|SHA|SHA1)$");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue