mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data.
This commit is contained in:
parent
ecff5e51a5
commit
3e86ba4e32
4 changed files with 34 additions and 8 deletions
|
@ -493,6 +493,18 @@ class BasicSocketTests(unittest.TestCase):
|
|||
support.gc_collect()
|
||||
self.assertIn(r, str(cm.warning.args[0]))
|
||||
|
||||
def test_unsupported_dtls(self):
|
||||
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
self.addCleanup(s.close)
|
||||
with self.assertRaises(NotImplementedError) as cx:
|
||||
ssl.wrap_socket(s, cert_reqs=ssl.CERT_NONE)
|
||||
self.assertEqual(str(cx.exception), "only stream sockets are supported")
|
||||
ctx = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
|
||||
with self.assertRaises(NotImplementedError) as cx:
|
||||
ctx.wrap_socket(s)
|
||||
self.assertEqual(str(cx.exception), "only stream sockets are supported")
|
||||
|
||||
|
||||
class ContextTests(unittest.TestCase):
|
||||
|
||||
@skip_if_broken_ubuntu_ssl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue