CVE-2025-29770: vLLM denial of service via outlines unbounded cache on disk
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.21065%
CWE
Published
3/19/2025
Updated
3/20/2025
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
vllm | pip |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from outlines' cache being enabled by default through the @cache
decorator applied to these class methods. These methods compile and cache grammar specifications (regex/CFG) to disk. As they lack size limits or cleanup mechanisms, repeated calls with unique schemas (via malicious requests) would accumulate cached files until disk space is exhausted. The patch addressed this by making caching opt-in via environment variable rather than default behavior.