原始 OSV JSON{
"id": "GHSA-7h4p-rffg-7823",
"aliases": [
"CVE-2026-54235"
],
"details": "## Summary\n\nAll temperature validation gates use comparison operators (`<`, `>`), which silently evaluate to `False` for `NaN` and for positive `Infinity` in Python's IEEE 754 float semantics. Both values pass every guard and propagate to GPU sampling kernels, where they produce undefined behavior or CUDA errors that can crash the inference worker. Note: `-Infinity` is correctly caught.\n\n## Root Cause\n\n`sampling_params.py:384`:\n```python\nif 0 < self.temperature < _MAX_TEMP: # NaN → False; +Inf → False\n```\n\n`sampling_params.py:462`:\n```python\nif self.temperature < 0.0: # NaN → False; +Inf → False\n raise VLLMValidationError(...)\n```\n\nNo `math.isnan()` or `math.isinf()` check exists anywhere in `sampling_params.py`.\n\nPython semantics (verified): `float('nan') < 0.0` → `False`, `float('inf') < 0.0` → `False`.\n\n\n## Impact\n\nCrash of inference worker on GPU kernel execution with NaN/Inf softmax input, degrading service for all concurrent users.\n\n## Remediation\n\nAdd `math.isfinite(self.temperature)` check in `_verify_args()`. Reject non-finite float values with a 400 error.\n\n## Fix\n\nA fix for this vulnerability was merged here: https://github.com/vllm-project/vllm/pull/45116",
"summary": "vLLM: temperature=NaN and temperature=Infinity bypass validation and propagate to GPU kernels",
"affected": [
{
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "0.8.5"
},
{
"fixed": "0.24.0"
}
]
}
],
"package": {
"name": "vllm",
"ecosystem": "PyPI"
},
"database_specific": {
"last_known_affected_version_range": "<= 0.23.0"
}
}
],
"modified": "2026-07-17T16:40:01Z",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L"
},
{
"type": "CVSS_V4",
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N"
}
],
"published": "2026-06-17T14:02:22Z",
"references": [
{
"url": "https://github.com/vllm-project/vllm/security/advisories/GHSA-7h4p-rffg-7823",
"type": "WEB"
},
{
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-54235",
"type": "ADVISORY"
},
{
"url": "https://github.com/vllm-project/vllm/pull/45116",
"type": "WEB"
},
{
"url": "https://github.com/vllm-project/vllm/commit/d598d239737cfa37bcfcb98886ec3f3557fc7198",
"type": "WEB"
},
{
"url": "https://github.com/advisories/GHSA-7h4p-rffg-7823",
"type": "ADVISORY"
},
{
"url": "https://github.com/pypa/advisory-database/tree/main/vulns/vllm/PYSEC-2026-3405.yaml",
"type": "WEB"
},
{
"url": "https://github.com/vllm-project/vllm",
"type": "PACKAGE"
},
{
"url": "https://pypi.org/project/vllm",
"type": "WEB"
}
],
"schema_version": "1.4.0",
"database_specific": {
"cwe_ids": [
"CWE-1287"
],
"severity": "MODERATE",
"github_reviewed": true,
"nvd_published_at": "2026-06-22T23:16:31Z",
"github_reviewed_at": "2026-06-17T14:02:22Z"
}
}