Security Vulnerability Report
中文
CVE-2026-41952 CVSS 7.8 HIGH

CVE-2026-41952

Published: 2026-04-29 15:16:06
Last Modified: 2026-05-19 15:05:12

Description

Local privilege escalation due to improper input validation. The following products are affected: Acronis DeviceLock DLP (Windows) before build 9.0.93212, Acronis Cyber Protect Cloud Agent (Windows) before build 42183.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Acronis DeviceLock DLP (Windows) before build 9.0.93212
Acronis Cyber Protect Cloud Agent (Windows) before build 42183

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os import sys # PoC for CVE-2026-41952: Local Privilege Escalation via Improper Input Validation # This is a conceptual demonstration based on the vulnerability description. def check_vulnerability(): """ Check if the target software version is vulnerable. """ # In a real scenario, this would check file versions or registry keys. # Example paths for Acronis products targets = [ "C:\\Program Files\\Acronis\\DeviceLockDLP\\bin\\dlp_service.exe", "C:\\Program Files\\Acronis\\CyberProtectAgent\\bin\\acs.exe" ] for target in targets: if os.path.exists(target): print(f"[+] Potential target found at: {target}") return True return False def trigger_exploit(): """ Simulate the exploitation by sending malformed input to the privileged service. """ print("[*] Attempting to trigger input validation flaw...") # Placeholder for the actual exploit logic. # This often involves interacting with a named pipe, a file system location, # or a custom protocol handler that runs as SYSTEM. malicious_input = "../../../Windows/System32/config/SAM" try: # Simulating the attack vector print(f"[*] Sending crafted payload: {malicious_input}") # If the service copies this input without validation to a sensitive location, # or executes a command based on it, privilege escalation occurs. print("[+] Exploit logic executed (Simulation).") print("[!] If successful, attacker would now have SYSTEM privileges.") except Exception as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": print("--- CVE-2026-41952 PoC (Conceptual) ---") if check_vulnerability(): trigger_exploit() else: print("[-] Target application not found or not vulnerable.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41952", "sourceIdentifier": "[email protected]", "published": "2026-04-29T15:16:06.417", "lastModified": "2026-05-19T15:05:11.970", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Local privilege escalation due to improper input validation. The following products are affected: Acronis DeviceLock DLP (Windows) before build 9.0.93212, Acronis Cyber Protect Cloud Agent (Windows) before build 42183."}], "metrics": {"cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/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": "Primary", "description": [{"lang": "en", "value": "CWE-123"}]}], "references": [{"url": "https://security-advisory.acronis.com/advisories/SEC-7790", "source": "[email protected]"}]}}