You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
python tls
About this tag
The python tls tag on WindowsForum.com covers discussions about TLS (Transport Layer Security) implementations in Python, with a focus on security vulnerabilities and best practices. Recent content highlights CVE-2026-27448, a vulnerability in pyOpenSSL where an unhandled exception in the SNI callback can leave a TLS handshake in an unsafe state, potentially allowing servers to accept connections that should be rejected. This tag is relevant for developers and IT professionals working with Python-based TLS applications, particularly those using pyOpenSSL for secure communications. Topics include SNI callback handling, TLS handshake security, and vulnerability advisories. The tag provides a resource for troubleshooting and staying informed about Python TLS issues.
The vulnerability described as CVE-2026-27448 appears to be centered on a subtle but important failure mode in pyOpenSSL: if an application’s set_tlsext_servername_callback throws an exception that is not handled correctly, the TLS handshake can be bypassed or left in an unsafe state. In...