Tomcat 7'nin sadece TLSv1.2'yi kesinlikle kullanmasını sağlamak için TLSv1.1 veya SSLv3 gibi önceki SSL protokollerine geri dönmemesini sağlayan benzer bir kullanım durumum var.
Şunu kullanıyorum: C: \ apache-tomcat-7.0.64-64bit ve C: \ Java64 \ jdk1.8.0_60.
Bu talimatı izleyerek: https://tomcat.apache.org/tomcat-7.0-doc/security-howto.html . Tomcat, SSL desteği kurmak nispeten basittir.
Birçok referanstan birçok kombinasyonu test ettim, sonunda Tomcat 7'yi sadece TLSv1.2'yi kabul etmeye zorlayacak 1 tane buldum. Dokunmak için 2 yer gerekli:
1) C: \ apache-tomcat-7.0.64-64bit \ conf \ server.xml içinde
<Connector port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
keystoreFile="ssl/.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="SSL" sslEnabledProtocols="TLSv1.2" />
nerede
keystoreFile
= yerel kendinden imzalı güven deposu
org.apache.coyote.http11.Http11Protocol
= JSSE BIO uygulaması.
Biz kullanmayın org.apache.coyote.http11.Http11AprProtocol
o Openssl tarafından desteklenmektedir çünkü. Temeldeki openssl, önceki SSL protokollerini desteklemek için geri düşecektir.
2) Tomcat'i başlatırken, aşağıdaki ortam parametrelerini etkinleştirin.
set JAVA_HOME=C:\Java64\jdk1.8.0_60
set PATH=%PATH%;C:\Java64\jdk1.8.0_60\bin
set CATALINA_HOME=C:\apache-tomcat-7.0.64-64bit
set JAVA_OPTS=-Djdk.tls.client.protocols="TLSv1.2" -Dsun.security.ssl.allowUnsafeRenegotiation=false -Dhttps.protocols="TLSv1.2"
JAVA_OPTS kısıtlaması gerekiyor, aksi takdirde Tomcat (Java8 tarafından desteklenmektedir) önceki SSL protokollerini desteklemek için geri düşecektir.
Tomcat'i başlat C:\apache-tomcat-7.0.64-64bit\bin\startup.bat
Tomcat başlangıç günlüğünde JAVA_OPTS mesajının görüntülendiğini görebiliriz.
Oct 16, 2015 4:10:17 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Djdk.tls.client.protocols=TLSv1.2
Oct 16, 2015 4:10:17 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dsun.security.ssl.allowUnsafeRenegotiation=false
Oct 16, 2015 4:10:17 PM org.apache.catalina.startup.VersionLoggerListener log
INFO: Command line argument: -Dhttps.protocols=TLSv1.2
Ardından, kurulumumuzu doğrulamak için openssl komutunu kullanabiliriz. Önce localhost: 8443'ü TLSv1.1 protokolüyle bağlayın. Tomcat, Sunucu sertifikasıyla yanıt vermeyi reddediyor.
C:\OpenSSL-Win32\bin>openssl s_client -connect localhost:8443 -tls1_1
Loading 'screen' into random state - done
CONNECTED(000001C0)
5372:error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number:.\ssl\s3_pkt.c:362:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 5 bytes and written 0 bytes
Localhost: 8443'ü TLSv1.2 protokolü ile bağlayın, Tomcat ServerHello'yu sertifika ile yanıtladı:
C:\OpenSSL-Win32\bin>openssl s_client -connect localhost:8443 -tls1_2
Loading 'screen' into random state - done
CONNECTED(000001C0)
depth=1 C = US, ST = Washington, L = Seattle, O = getaCert - www.getacert.com
verify error:num=19:self signed certificate in certificate chain
---
Certificate chain
0 s:/C=SG/ST=SG/L=Singapore/O=Xxxx/OU=Development/CN=Myself
i:/C=US/ST=Washington/L=Seattle/O=getaCert - www.getacert.com
1 s:/C=US/ST=Washington/L=Seattle/O=getaCert - www.getacert.com
i:/C=US/ST=Washington/L=Seattle/O=getaCert - www.getacert.com
---
Server certificate
-----BEGIN CERTIFICATE-----
(ignored)
-----END CERTIFICATE-----
subject=/C=SG/ST=SG/L=Singapore/O=Xxxx/OU=Development/CN=Myself
issuer=/C=US/ST=Washington/L=Seattle/O=getaCert - www.getacert.com
---
No client certificate CA names sent
Peer signing digest: SHA512
Server Temp Key: ECDH, P-256, 256 bits
---
SSL handshake has read 2367 bytes and written 443 bytes
Bu, Tomcat'in artık yalnızca TLSv1.2 talebine kesin olarak yanıt verdiğini kanıtlıyor.