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

CVE-2025-53398

Published: 2025-12-17 17:15:50
Last Modified: 2026-01-02 14:58:27

Description

The Portrait Dell Color Management application 3.3.8 for Dell monitors has Insecure Permissions,

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:portrait:dell_color_management:*:*:*:*:*:*:*:* - VULNERABLE
Portrait Dell Color Management 3.3.8 for Dell monitors

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-53398 PoC - Portrait Dell Color Management Permission Misconfiguration This PoC demonstrates checking for insecure file permissions in the application. """ import os import subprocess import sys def check_dell_color_mgmt_permissions(): """Check for insecure permissions on Portrait Dell Color Management application""" # Common installation paths for Portrait Dell Color Management possible_paths = [ r"C:\Program Files\Portrait Displays\Dell Color Management", r"C:\Program Files (x86)\Portrait Displays\Dell Color Management", r"C:\ProgramData\Portrait Displays\Dell Color Management" ] print("[*] Checking for Portrait Dell Color Management installation...") for path in possible_paths: if os.path.exists(path): print(f"[+] Found installation at: {path}") print(f"[*] Checking permissions on executable files...") # Check file permissions using icacls for root, dirs, files in os.walk(path): for file in files: if file.endswith('.exe') or file.endswith('.dll'): file_path = os.path.join(root, file) try: result = subprocess.run( ['icacls', file_path], capture_output=True, text=True ) output = result.stdout # Check if Everyone or Users have write permissions if 'Everyone:(F)' in output or 'Everyone:(M)' in output: print(f"[!] VULNERABLE: {file_path}") print(f" Everyone has full control - permission misconfiguration detected") elif 'Users:(F)' in output or 'Users:(M)' in output: print(f"[!] VULNERABLE: {file_path}") print(f" Users have full/modify control - permission misconfiguration detected") except Exception as e: print(f"[-] Error checking {file_path}: {e}") return True print("[-] Portrait Dell Color Management not found") return False if __name__ == "__main__": print("="*60) print("CVE-2025-53398 - Portrait Dell Color Management Insecure Permissions") print("="*60) check_dell_color_mgmt_permissions()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53398", "sourceIdentifier": "[email protected]", "published": "2025-12-17T17:15:50.280", "lastModified": "2026-01-02T14:58:27.377", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Portrait Dell Color Management application 3.3.8 for Dell monitors has Insecure Permissions,"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-276"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:portrait:dell_color_management:*:*:*:*:*:*:*:*", "versionEndIncluding": "3.3.008", "matchCriteriaId": "B946ED39-8CAA-4B23-AF91-915764C99543"}]}]}], "references": [{"url": "https://www.portrait.com/dell-security-cve-updates/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.portrait.com/dell/", "source": "[email protected]", "tags": ["Product"]}]}}