Enable Logging SSL handshake failure(Audit purpose logs) only on Tomcat 8+ with Java

后端 未结 2 633
南方客
南方客 2021-02-05 19:32

I need to log if a SSL handshake fails while a REST client tries to connect to my application. The application is build using Spring Boot and Java 8 and deployed on Tomcat 8.

2条回答
  •  囚心锁ツ
    2021-02-05 20:13

    Unfortunately, it is not possible likely. And it is not related to Tomcat. Logging of SSL it is not part of standard logging in your application. You could try reduce output with following option:

    -Djava.net.debug=handshake
    

    Some others:

    • record - Print a trace of each SSL record (at the SSL protocol level).
    • handshake - Print each handshake message as it is received
    • keygen - Print key generation data for the secret key exchange.
    • session - Print SSL session activity.
    • defaultctx - Print the default SSL initialization information.
    • sslctx - Print information about the SSL context.
    • sessioncache - Print information about the SSL session cache.
    • keymanager - Print information about calls to the key manager.
    • trustmanager - Print information about calls to the trust manager.
    • data - For handshake tracing, print out a hex dump of each message.
    • verbose - For handshake tracing, print out verbose information.
    • plaintext - For record tracing, print out a hex dump of the record.

    See docs.

    If you really need this and performance is critical for your application, you could instrument SSLSocket (in docs you could read about handshake process) with ASM/Btrace /etc and check the state of handshake inside it. But in that case you wouldn't have debug information - only true/false.

    See also Tomcat docs with all available settings. There you can read that there is JSSEImplementation class, which is used in Tomcat. And it is wrapper for JSSE.

提交回复
热议问题