We are currently hosting a web service using basic Java EE framework and https security is one of our main concern. We periodically check our configuration using SSL labs: https://www.ssllabs.com/ssltest/analyze.html?d=www.google.com&s=216.58.195.68&hideResults=on making sure we are in the A+ range all the time.
Recently we noticed there's a notice about TLS version:
This server supports TLS 1.0 and TLS 1.1. Grade will be capped to B from January 2020.
We are using Apache 2.4 and is well aware of how to turn off TLS 1..0 and 1.1, however we would like to inform our all our clients beforehand. We wish to filter out those who's already using 1.2 and 1.3, but we believe most of them wouldn't know which version they are using anyway.
Is there any method in HttpServletRequest where we can check the version of TLS they are using? That way we can filter out the updated clients and only notify those who are still using older frameworks.
Thank you.