Security Vulnerability Report
中文
CVE-2026-32655 CVSS 5.3 MEDIUM

CVE-2026-32655

Published: 2026-04-27 19:16:47
Last Modified: 2026-04-28 20:13:24

Description

Dell Alienware Command Center (AWCC), versions prior to 6.13.8.0, contain a Least Privilege Violation vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Elevation of Privileges.

CVSS Details

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

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
# PoC for CVE-2026-32655 (Least Privilege Violation) # This script demonstrates a conceptual check for the vulnerability. import os import sys def check_vulnerability(): # Path to the vulnerable component (Hypothetical path for demonstration) target_path = "C:\\Program Files\\Alienware\\Command Center\\AWCCService.exe" print(f"[*] Checking permissions on: {target_path}") if not os.path.exists(target_path): print("[-] Target application not found. This PoC requires AWCC installed.") return try: # Simulate an attempt to modify the service configuration # In a real Least Privilege Violation, a low-priv user might have write access # to a service binary or config file. with open(target_path, 'a') as f: # This operation should fail under normal security conditions print("[!] WARNING: Write access detected on critical binary!") print("[+] Potential Privilege Escalation vector confirmed.") except PermissionError: print("[+] Write access denied. System appears patched or secure.") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32655", "sourceIdentifier": "[email protected]", "published": "2026-04-27T19:16:47.387", "lastModified": "2026-04-28T20:13:23.880", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Alienware Command Center (AWCC), versions prior to 6.13.8.0, contain a Least Privilege Violation vulnerability. 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:N/S:U/C:N/I:H/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.0, "impactScore": 4.2}, {"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-272"}]}], "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"]}]}}