diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-12-06 01:30:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-12-06 01:30:54 (GMT) |
commit | 81b7374fbe5f77567642d5aa42d4c1e6eee610b2 (patch) | |
tree | 36995a727ad750225642d690508d2db92df439c6 /Lib/xmlrpc | |
parent | e71abcc7bb0ab2d11af25d6a65db73701b58a91c (diff) | |
parent | 4e9cefaf86035f8014e09049328d197b6506532f (diff) | |
download | cpython-81b7374fbe5f77567642d5aa42d4c1e6eee610b2.zip cpython-81b7374fbe5f77567642d5aa42d4c1e6eee610b2.tar.gz cpython-81b7374fbe5f77567642d5aa42d4c1e6eee610b2.tar.bz2 |
merge 3.2 (#16043)
Diffstat (limited to 'Lib/xmlrpc')
-rw-r--r-- | Lib/xmlrpc/client.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Lib/xmlrpc/client.py b/Lib/xmlrpc/client.py index 461c300..ca2ac9f 100644 --- a/Lib/xmlrpc/client.py +++ b/Lib/xmlrpc/client.py @@ -49,6 +49,7 @@ # 2003-07-12 gp Correct marshalling of Faults # 2003-10-31 mvl Add multicall support # 2004-08-20 mvl Bump minimum supported Python version to 2.1 +# 2014-12-02 ch/doko Add workaround for gzip bomb vulnerability # # Copyright (c) 1999-2002 by Secret Labs AB. # Copyright (c) 1999-2002 by Fredrik Lundh. @@ -1031,10 +1032,13 @@ def gzip_encode(data): # in the HTTP header, as described in RFC 1952 # # @param data The encoded data +# @keyparam max_decode Maximum bytes to decode (20MB default), use negative +# values for unlimited decoding # @return the unencoded data # @raises ValueError if data is not correctly coded. +# @raises ValueError if max gzipped payload length exceeded -def gzip_decode(data): +def gzip_decode(data, max_decode=20971520): """gzip encoded data -> unencoded data Decode data using the gzip content encoding as described in RFC 1952 @@ -1044,11 +1048,16 @@ def gzip_decode(data): f = BytesIO(data) gzf = gzip.GzipFile(mode="rb", fileobj=f) try: - decoded = gzf.read() + if max_decode < 0: # no limit + decoded = gzf.read() + else: + decoded = gzf.read(max_decode + 1) except IOError: raise ValueError("invalid data") f.close() gzf.close() + if max_decode >= 0 and len(decoded) > max_decode: + raise ValueError("max gzipped payload length exceeded") return decoded ## |