We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The HTTPTLSConnection class does not send SNI information.
It can be tested by connecting to an SNI-only site and looking at the certificate:
>>> from tlslite.api import HTTPTLSConnection >>> c = HTTPTLSConnection("biewald.dedyn.io", 443) >>> c.request("GET", "") >>> print(c.tlsSession.serverCertChain.x509List[0].bytes) bytearray(b"0\x82\...\x82\x0evarbin.noip.me0Q...\xc3\xdf")
My python version is 3.5.0 and my tlslite version is 0.4.9 from PyPi.
The text was updated successfully, but these errors were encountered:
can you check if this pull request tlsfuzzer/tlslite-ng#72 fixes your issue?
Sorry, something went wrong.
Yes! Thank you very much!
No branches or pull requests
The HTTPTLSConnection class does not send SNI information.
It can be tested by connecting to an SNI-only site and looking at the certificate:
My python version is 3.5.0 and my tlslite version is 0.4.9 from PyPi.
The text was updated successfully, but these errors were encountered: