CVE-2026-49755 PUBLISHED

Decompression bomb DoS in Req via auto-decoded archive and compressed response bodies

Assigner: EEF
Reserved: 01.06.2026 Published: 08.06.2026 Updated: 08.06.2026

Improper Handling of Highly Compressed Data (Data Amplification) vulnerability in wojtekmach Req allows attacker-controlled HTTP servers to exhaust memory in a Req client via decompression-bomb response bodies.

Req's default response pipeline includes Req.Steps.decode_body/1 and Req.Steps.decompress_body/1 in lib/req/steps.ex. decode_body/1 dispatches on the server-supplied content-type (or URL extension) and calls :zip.extract(body, [:memory]) for application/zip, :erl_tar.extract({:binary, body}, [:memory]) for application/x-tar, and :erl_tar.extract({:binary, body}, [:memory, :compressed]) for application/gzip / .tgz. Each returns the full decompressed archive contents as a [{name, bytes}] list in memory, with no per-entry or total size cap. decompress_body/1 walks the content-encoding header and chains :zlib/:brotli/:ezstd decoders, so a response advertising content-encoding: gzip, gzip, gzip inflates through multiple layers without bound.

Both steps are enabled by default, no caller opt-in is required, and the attacker controls the content-type and content-encoding headers on their own server (or on any host reached via Req's automatic redirect following). A sub-megabyte response can expand to multiple gigabytes on the victim, crashing the BEAM process.

This issue affects req: from 0.1.0 before 0.6.1.

Metrics

CVSS Vector: CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
CVSS Score: 8.2

Product Status

Vendor wojtekmach
Product req
Versions Default: unaffected
  • affected from 0.1.0 to 0.6.1 (excl.)
Vendor wojtekmach
Product req
Versions Default: unaffected
  • affected from e37753741cbdc725e6aba3d977b380163bfc0ecb to 84977e5b1a83f26e749d55ad06e3625464af4e8d (excl.)

Workarounds

Disable Req's automatic body decoding on requests that fetch attacker-influenced URLs by passing decode_body: false to Req.new/1 / Req.get!/1. To also skip the content-encoding decompression pipeline, pass raw: true. Both options leave the response body as the raw on-the-wire bytes, so the caller can size-check before any decompression.

Credits

  • Peter Ullrich finder
  • Wojtek Mach remediation developer
  • Jonatan Männchen / EEF analyst

References

Problem Types

  • CWE-409 Improper Handling of Highly Compressed Data (Data Amplification) CWE

Impacts

  • CAPEC-197 Exponential Data Expansion