Python Forum
Get the Client-Side TLS ? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Get the Client-Side TLS ? (/thread-35680.html)



Get the Client-Side TLS ? - JohnnyCoffee - Nov-30-2021

Does anyone know how I can capture the client’s TLS using the ssl module, because I need to be able to negotiate the TLS version to be used in an SSL connection ?


RE: Get the Client-Side TLS ? - Larz60+ - Nov-30-2021

see: https://docs.python.org/3/library/ssl.html which has some example code.
also take a look at: https://stackoverflow.com/a/50538143 which is a good response to a similar question