mirror of https://github.com/python/cpython
Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure.
This commit is contained in:
parent
889bb2969d
commit
f2bf8a6ac5
|
@ -13,6 +13,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC
|
||||
IV attack countermeasure.
|
||||
|
||||
- Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by
|
||||
Andreas Stührk.
|
||||
|
||||
|
|
|
@ -365,7 +365,8 @@ newPySSLObject(PySocketSockObject *Sock, char *key_file, char *cert_file,
|
|||
}
|
||||
|
||||
/* ssl compatibility */
|
||||
SSL_CTX_set_options(self->ctx, SSL_OP_ALL);
|
||||
SSL_CTX_set_options(self->ctx,
|
||||
SSL_OP_ALL & ~SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS);
|
||||
|
||||
verification_mode = SSL_VERIFY_NONE;
|
||||
if (certreq == PY_SSL_CERT_OPTIONAL)
|
||||
|
|
Loading…
Reference in New Issue