Security Vulnerability Report
中文
CVE-2025-67813 CVSS 5.3 MEDIUM

CVE-2025-67813

Published: 2026-01-12 16:16:04
Last Modified: 2026-01-20 18:33:25

Description

Quest KACE Desktop Authority through 11.3.1 has Insecure Permissions on the Named Pipes used for inter-process communication

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:quest:kace_desktop_authority:*:*:*:*:*:*:*:* - VULNERABLE
Quest KACE Desktop Authority <= 11.3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67813 PoC - Quest KACE Desktop Authority Named Pipe Enumeration # This PoC demonstrates enumeration of named pipes with weak permissions import win32security import win32api import ntsecuritycon as con import os def enumerate_named_pipes(): """Enumerate all named pipes and check their security descriptors""" print("[*] CVE-2025-67813 - KACE Desktop Authority Named Pipe Enumeration\n") # Common KACE Desktop Authority named pipe patterns kace_pipe_patterns = [ "KACE_*", "DA_*", "\\\\.\\pipe\\KACE*", "\\\\.\\pipe\\DA*" ] # Use PowerShell to enumerate named pipes ps_script = ''' Get-ChildItem \\.\pipe\ | Select-Object Name, FullName ''' print("[*] Enumerating named pipes...") # Check if current user has access to pipes try: # Attempt to open a common pipe path pipe_path = r"\\.\pipe\" handles = os.listdir(r"\\.\pipe\") print(f"[+] Found {len(handles)} named pipes") for handle in handles: if any(pattern.replace("*", "") in handle for pattern in ["KACE", "DA"]): print(f"[+] Potential KACE pipe found: {handle}") # Check DACL for the pipe try: sd = win32security.GetFileSecurity( rf"\\.\pipe\{handle}", win32security.DACL_SECURITY_INFORMATION ) dacl = sd.GetSecurityDescriptorDacl() if dacl: print(f"[*] DACL entries for {handle}:") for i in range(dacl.GetAceCount()): ace = dacl.GetAce(i) print(f" - ACE {i}: {ace}") except Exception as e: print(f"[-] Could not check DACL: {e}") except Exception as e: print(f"[-] Error enumerating pipes: {e}") def check_privilege_escalation(): """Check if low-privilege access to KACE pipes could lead to privilege escalation""" print("\n[*] Checking for potential privilege escalation vectors...") # Check current user privileges try: token = win32security.OpenProcessToken( win32api.GetCurrentProcess(), win32security.TOKEN_QUERY ) print(f"[+] Current process token: {token}") # Check if we can access KACE service print("[*] Attempting to identify KACE service named pipes...") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": enumerate_named_pipes() check_privilege_escalation() print("\n[*] Note: This is for authorized security testing only")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67813", "sourceIdentifier": "[email protected]", "published": "2026-01-12T16:16:04.410", "lastModified": "2026-01-20T18:33:24.860", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Quest KACE Desktop Authority through 11.3.1 has Insecure Permissions on the Named Pipes used for inter-process communication"}, {"lang": "es", "value": "Quest KACE Desktop Authority hasta 11.3.1 tiene permisos inseguros en las tuberías con nombre utilizadas para la comunicación entre procesos."}], "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:L/I:L/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.8, "impactScore": 3.4}]}, "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:quest:kace_desktop_authority:*:*:*:*:*:*:*:*", "versionEndExcluding": "11.3.2", "matchCriteriaId": "6D3DFFF7-A664-414B-A672-376BC97EC18E"}]}]}], "references": [{"url": "https://quest.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://support.quest.com/kb/4381743/quest-kace-desktop-authority-insecure-named-pipe-permissions-cve-2025-67813", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}