Security Vulnerability Report
中文
CVE-2026-25908 CVSS 6.7 MEDIUM

CVE-2026-25908

Published: 2026-04-27 18:16:53
Last Modified: 2026-04-28 20:12:54

Description

Dell Alienware Command Center (AWCC), versions prior to 6.13.8.0, contain an Execution with Unnecessary Privileges vulnerability in the AWCC. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of Privileges.

CVSS Details

CVSS Score
6.7
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:dell:alienware_command_center:*:*:*:*:*:*:*:* - VULNERABLE
Dell Alienware Command Center < 6.13.8.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept (Conceptual) for CVE-2026-25908 # This script demonstrates the logic for checking the vulnerable version # and simulating the interaction required for the exploit. import os import subprocess def check_vulnerability(): print("[*] Checking for Dell Alienware Command Center vulnerable versions...") # The vulnerability affects versions prior to 6.13.8.0 vulnerable_versions = ["6.13.7.0", "6.13.6.0", "6.0.0.0"] # In a real scenario, this would query the registry or file version current_version = "6.13.7.0" # Simulated current version if current_version in vulnerable_versions: print(f"[!] Vulnerable version found: {current_version}") print("[*] Attempting to trigger the unnecessary privilege execution...") # Simulate the local interaction required (UI:R) # Exploit logic would involve triggering the AWCC service with a malicious payload try: # Placeholder for the actual exploit trigger print("[+] Triggering payload execution via AWCC service...") # subprocess.run(["malicious_payload.exe"], shell=True) print("[+] Privilege escalation simulated.") except Exception as e: print(f"[-] Exploit failed: {e}") else: print("[+] System is not vulnerable or patch is applied.") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25908", "sourceIdentifier": "[email protected]", "published": "2026-04-27T18:16:53.360", "lastModified": "2026-04-28T20:12:53.913", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Alienware Command Center (AWCC), versions prior to 6.13.8.0, contain an Execution with Unnecessary Privileges vulnerability in the AWCC. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of Privileges."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "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-250"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:alienware_command_center:*:*:*:*:*:*:*:*", "versionEndExcluding": "6.13.8.0", "matchCriteriaId": "ABC453AF-4C69-4674-A352-3852E53C5D9A"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000451018/dsa-2026-192-security-update-for-dell-alienware-command-center-6-x-for-multiple-vulnerabilities", "source": "[email protected]", "tags": ["Patch", "Vendor Advisory"]}]}}