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

CVE-2025-33234

Published: 2026-01-27 18:15:54
Last Modified: 2026-04-15 00:35:42

Description

NVIDIA runx contains a vulnerability where an attacker could cause a code injection. A successful exploit of this vulnerability might lead to code execution, denial of service, 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 runx 受影响版本需参考官方安全公告
建议访问 https://nvidia.custhelp.com/app/answers/detail/a_id/5764 获取详细版本信息

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-33234 PoC - NVIDIA runx Code Injection # Note: This is a conceptual PoC for demonstration purposes import subprocess import sys def check_vulnerability(): """ Check if NVIDIA runx is vulnerable to CVE-2025-33234 """ try: # Check if nvidia-runx is installed result = subprocess.run(['which', 'nvidia-runx'], capture_output=True, text=True) if result.returncode != 0: print("[-] NVIDIA runx not found") return False print("[+] NVIDIA runx found") # Check version (placeholder - actual version check would need NVIDIA tools) print("[*] Please check NVIDIA security bulletin for affected versions") print("[*] Reference: https://nvidia.custhelp.com/app/answers/detail/a_id/5764") return True except Exception as e: print(f"[-] Error: {e}") return False def exploit_demo(): """ Demonstration of potential code injection vector Note: This is for educational purposes only """ print("[*] This vulnerability allows code injection via malicious input") print("[*] Attackers could inject arbitrary code through unvalidated input") print("[*] This could lead to: RCE, DoS, Privilege Escalation, Information Disclosure") if __name__ == "__main__": print("CVE-2025-33234 - NVIDIA runx Code Injection Vulnerability") print("=" * 60) check_vulnerability() exploit_demo()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-33234", "sourceIdentifier": "[email protected]", "published": "2026-01-27T18:15:53.560", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA runx contains a vulnerability where an attacker could cause a code injection. A successful exploit of this vulnerability might lead to code execution, denial of service, escalation of privileges, information disclosure, and data tampering."}, {"lang": "es", "value": "NVIDIA runx contiene una vulnerabilidad donde un atacante podría causar una inyección de código. Un exploit exitoso de esta vulnerabilidad podría conducir a la ejecución de código, denegación de servicio, escalada de privilegios, revelación de información y manipulación de datos."}], "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-78"}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-33234", "source": "[email protected]"}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5764", "source": "[email protected]"}, {"url": "https://www.cve.org/CVERecord?id=CVE-2025-33234", "source": "[email protected]"}]}}