diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-21 11:19:13 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-21 11:19:25 +0200 |
commit | 0fbfc5106cd9866325b4a1ab3b9db8e91e54f070 (patch) | |
tree | e6230f51d9d6f753b6d1f8242fa3ef70cdd9330a /qa | |
parent | 3b20e239c602dd7d3ab85935ef9d1f6c5e1907d2 (diff) | |
parent | 41db8c4733b34d56834162c4d054823c240ffc92 (diff) |
Merge pull request #6859
41db8c4 http: Restrict maximum size of request line + headers (Wladimir J. van der Laan)
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/rpc-tests/httpbasics.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qa/rpc-tests/httpbasics.py b/qa/rpc-tests/httpbasics.py index b66533543d..7888114c54 100755 --- a/qa/rpc-tests/httpbasics.py +++ b/qa/rpc-tests/httpbasics.py @@ -97,5 +97,19 @@ class HTTPBasicsTest (BitcoinTestFramework): assert_equal('"error":null' in out1, True) assert_equal(conn.sock!=None, True) #connection must be closed because bitcoind should use keep-alive by default + # Check excessive request size + conn = httplib.HTTPConnection(urlNode2.hostname, urlNode2.port) + conn.connect() + conn.request('GET', '/' + ('x'*1000), '', headers) + out1 = conn.getresponse() + assert_equal(out1.status, httplib.NOT_FOUND) + + conn = httplib.HTTPConnection(urlNode2.hostname, urlNode2.port) + conn.connect() + conn.request('GET', '/' + ('x'*10000), '', headers) + out1 = conn.getresponse() + assert_equal(out1.status, httplib.BAD_REQUEST) + + if __name__ == '__main__': HTTPBasicsTest ().main () |