]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Continue...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 6 May 2021 17:05:37 +0000 (10:05 -0700)
committerGitHub <noreply@github.com>
Thu, 6 May 2021 17:05:37 +0000 (13:05 -0400)
commitf68d2d69f1da56c2aea1293ecf93ab69a6010ad7
treeff2192f35b515dcb09af4b62587a7106cf16eca3
parent3fbe96123aeb66664fa547a8f6022efa2dc8788f
bpo-44022: Fix http client infinite line reading (DoS) after a HTTP 100 Continue (GH-25916) (GH-25935)

Fixes http.client potential denial of service where it could get stuck reading lines from a malicious server after a 100 Continue response.

Co-authored-by: Gregory P. Smith <greg@krypto.org>
(cherry picked from commit 47895e31b6f626bc6ce47d175fe9d43c1098909d)

Co-authored-by: Gen Xu <xgbarry@gmail.com>
Lib/http/client.py
Lib/test/test_httplib.py
Misc/NEWS.d/next/Security/2021-05-05-17-37-04.bpo-44022.bS3XJ9.rst [new file with mode: 0644]