Security Vulnerability Report
中文
CVE-2025-46370 CVSS 3.3 LOW

CVE-2025-46370

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

Description

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

CVSS Details

CVSS Score
3.3
Severity
LOW
CVSS Vector
CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:dell:alienware_command_center:*:*:*:*:*:*:*:* - VULNERABLE
Dell Alienware Command Center 6.x < 6.10.15.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46370 PoC - Dell AWCC Process Control Information Disclosure # This is a conceptual PoC demonstrating the attack vector import os import sys import ctypes from ctypes import wintypes def exploit_awcc_process_control(): """ Conceptual PoC for CVE-2025-46370 Demonstrates how a low-privilege user might exploit process control vulnerability """ print("[*] CVE-2025-46370 - Dell AWCC Process Control Vulnerability") print("[*] Target: Dell Alienware Command Center < 6.10.15.0") # Step 1: Identify AWCC process awcc_process_name = "AWCCService.exe" print(f"[+] Step 1: Locating {awcc_process_name}") # Step 2: Attempt to manipulate AWCC process via IPC print("[+] Step 2: Attempting to interact with AWCC process control interface") # Step 3: Exploit improper access control print("[+] Step 3: Exploiting process control vulnerability for information disclosure") # Step 4: Read sensitive information print("[+] Step 4: Extracting sensitive configuration data") print("[!] Note: This is a conceptual PoC for educational purposes only") print("[!] Actual exploitation requires specific conditions and targets") return False if __name__ == "__main__": exploit_awcc_process_control()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46370", "sourceIdentifier": "[email protected]", "published": "2025-11-13T20:15:50.263", "lastModified": "2025-11-17T12:26:13.463", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Alienware Command Center 6.x (AWCC), versions prior to 6.10.15.0, contain a Process Control vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Information Disclosure."}], "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:L/I:L/A:N", "baseScore": 3.3, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.8, "impactScore": 2.5}, {"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:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-114"}]}], "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"]}]}}