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.
tls sni callback
About this tag
The tag 'tls sni callback' covers discussions about the TLS Server Name Indication (SNI) callback mechanism, particularly in the context of the pyOpenSSL library. A recent thread highlights CVE-2026-27448, a vulnerability where an unhandled exception in the SNI callback (set_tlsext_servername_callback) can cause the TLS handshake to fail open, potentially allowing unauthorized connections. This issue is relevant for servers using SNI-based routing or policy enforcement. The content focuses on the security implications of improper exception handling in TLS callbacks, with references to pyOpenSSL and Microsoft Security Response Center advisories. The tag is associated with TLS, SNI, and Python security topics.
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...