Tomcat APR connector and POODLE -
I have an APR + SSL connector Tomket 7.0 running some production server and recently caused me crazy attack asked was to completely disable SSLv3 in some of these servers I opened through the document and accordingly, SSLProtocol
to TLSv1
( instead
should be sufficient to disable SSLv3 and apply TLSv1.
The problem is that TLSv1
does not reject but the server SSLv3 seems to enable TLS. I got it openssl s_client -connect -ssl3
and I verified that plain-old SSLv3 connection can still be accepted , So I was thinking that this is a bug in tomcat or if there is anything else that requires me to disable SSLv3 completely set.
UPDATE: I now Disabled APR for and use an NIO connector with sslProtocol = "TLS"
New disabled and it works fine. The problem especially affects the APR. For reference, this is my new connector configuration:
& lt; Connector port = "443" protocol = "org.apache.coyote.http11.Http11NioProtocol" SSLEnabled = "true" maxThreads = "500" scheme = "https" secure = "true" C LientAuth = "false" keystoreFile = "/ etc / Keys / ***. Ks "keystorePass =" **** "SSL Protocol =" TLS "sslEnabledProtocols =" TLSv1.1, TLSv1.2 "/> It seems that while using APR connector with TLS, SEL has the ability to completely disable. Still a work in progress. Check out this link for more information: specifically comment # 37 The good news is that it will be fixed in the next release of Tomcat and Tommat's original. Comment # 39 See:
r1632593 and Tisianatti -1.1. X will be fixed R1632595 Tisianatti in Tisianetiv-trunk 1.1.32
and comment # 40 :
Tomket-trunk will be fixed Tomk 8.0.15 in r1632604 be fixed Tomket 7.0.57 R 1,632,606 in Tomket 7
Comments
Post a Comment