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

CVE-2026-41220

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) < build 9.0.93212
Acronis Cyber Protect Cloud Agent (Windows) < build 42183

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-41220: Acronis Local Privilege Escalation # This is a conceptual demonstration of improper input validation leading to LPE. import os import ctypes def check_vulnerability(): # Hypothetical check for vulnerable versions version = "9.0.93000" # Example vulnerable version if version < "9.0.93212": return True return False def exploit_attempt(): """ Attempt to trigger the vulnerability by sending malformed input to the vulnerable Acronis service component. """ if not check_vulnerability(): print("[-] Target is not vulnerable.") return print("[+] Target appears vulnerable.") # Simulating the malicious payload # In a real scenario, this would interact with the vulnerable API/Driver malicious_input = "..\\..\\..\\windows\\system32\\config\\SAM" try: # Placeholder for the actual exploit logic (e.g., IOCTL, File write) # send_payload_to_service(malicious_input) print(f"[+] Sending payload: {malicious_input}") print("[+] If successful, code would execute with SYSTEM privileges.") except Exception as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": exploit_attempt()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41220", "sourceIdentifier": "[email protected]", "published": "2026-04-29T15:16:05.950", "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-787"}]}], "references": [{"url": "https://security-advisory.acronis.com/advisories/SEC-10296", "source": "[email protected]"}]}}