diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-08-05 04:15:57 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-08-05 04:15:57 (GMT) |
commit | b7414e0fdb35d21612895cbb41f993808f755c40 (patch) | |
tree | 3d7b6ca0aeeec525bcedd5440a218582c2d832df /Lib | |
parent | c468abafc7a8690be365d1eb192c4551b03c2856 (diff) | |
download | cpython-b7414e0fdb35d21612895cbb41f993808f755c40.zip cpython-b7414e0fdb35d21612895cbb41f993808f755c40.tar.gz cpython-b7414e0fdb35d21612895cbb41f993808f755c40.tar.bz2 |
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more
than 100 headers are read.
Patch by Jyrki Pulliainen and Daniel Eriksson.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/httplib.py | 6 | ||||
-rw-r--r-- | Lib/test/test_httplib.py | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py index 5368cd9..b2f6e5c 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -215,6 +215,10 @@ MAXAMOUNT = 1048576 # maximal line length when calling readline(). _MAXLINE = 65536 +# maximum amount of headers accepted +_MAXHEADERS = 100 + + class HTTPMessage(mimetools.Message): def addheader(self, key, value): @@ -271,6 +275,8 @@ class HTTPMessage(mimetools.Message): elif self.seekable: tell = self.fp.tell while True: + if len(hlist) > _MAXHEADERS: + raise HTTPException("got more than %d headers" % _MAXHEADERS) if tell: try: startofline = tell() diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index 72800e5..4b2a638 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -262,6 +262,13 @@ class BasicTest(TestCase): if resp.read() != "": self.fail("Did not expect response from HEAD request") + def test_too_many_headers(self): + headers = '\r\n'.join('Header%d: foo' % i for i in xrange(200)) + '\r\n' + text = ('HTTP/1.1 200 OK\r\n' + headers) + s = FakeSocket(text) + r = httplib.HTTPResponse(s) + self.assertRaises(httplib.HTTPException, r.begin) + def test_send_file(self): expected = 'GET /foo HTTP/1.1\r\nHost: example.com\r\n' \ 'Accept-Encoding: identity\r\nContent-Length:' |