SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-85008

LOW · CVSS 3.7 EPSS 0.12% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects undici's cache interceptor, which incorrectly caches responses to unsafe HTTP methods (e.g., POST, PUT, DELETE) due to flawed logic in its caching mechanism. This can lead to integrity issues, where stale or untrusted cached responses are served for state-changing requests, potentially compromising application behavior. Organizations using affected versions of undici should prioritize upgrading to versions 7.29.1 or 8.10.2 to mitigate this risk.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-85008
Severity
LOW
CVSS
3.7
EPSS
0.12%

Original NVD Description

undici's cache interceptor documents that only safe HTTP methods are cached, but its logic to skip caching is built by subtracting the configured methods from the set of safe methods, so an unsafe method such as POST, PUT, or DELETE is never placed in the skip list and instead falls through to the full cache-read path. The response-storage gate also lacked a method check, so a response to an unsafe request that is heuristically cacheable or carries an explicit Cache-Control directive is stored and later replayed from cache. Because response headers from a remote origin are untrusted, an origin can answer once with a cacheable status and then have the client's own subsequent state-changing requests to that path served from the stale cache entry without ever reaching the origin, an integrity failure that occurs under the interceptor's default configuration. This affects undici versions from 7.0.0 up to 7.29.1 and from 8.0.0 up to 8.10.2. Users should upgrade to undici 7.29.1 or 8.10.2.