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

CVE-2025-8486

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

Description

A potential vulnerability was reported in PC Manager 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(具体受影响版本请参考联想官方安全公告 iknow.lenovo.com.cn/detail/432378)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-8486 - Lenovo PC Manager Local Privilege Escalation PoC # This is a conceptual PoC demonstrating the exploitation approach # The actual exploit would require specific knowledge of the vulnerable binary import os import sys import subprocess import ctypes def check_admin(): """Check if current process has admin privileges""" try: return ctypes.windll.shell32.IsUserAnAdmin() != 0 except: return False def find_pc_manager_service(): """Locate Lenovo PC Manager service or executable""" common_paths = [ r"C:\Program Files\Lenovo\PCManager", r"C:\Program Files (x86)\Lenovo\PCManager", r"C:\ProgramData\Lenovo\PCManager" ] for path in common_paths: if os.path.exists(path): return path return None def exploit_lpe(): """Attempt local privilege escalation via PC Manager""" print("[*] CVE-2025-8486 - Lenovo PC Manager LPE PoC") print("[*] Current user: {}".format(os.getlogin())) if check_admin(): print("[+] Already running with admin privileges") return pc_manager_path = find_pc_manager_service() if not pc_manager_path: print("[-] PC Manager not found on this system") return print("[*] PC Manager found at: {}".format(pc_manager_path)) # Exploitation approach: Interact with PC Manager's IPC mechanism # or trigger vulnerable code path to escalate privileges # Note: Specific exploitation technique depends on the vulnerable component # Example: Attempt to trigger the vulnerable service call try: # The actual exploit would leverage the specific vulnerability # such as DLL hijacking, named pipe abuse, or symlink attack print("[*] Attempting privilege escalation...") # Placeholder for actual exploitation code print("[!] This is a conceptual PoC - actual exploitation requires") print(" specific knowledge of the vulnerable component in PC Manager") except Exception as e: print("[-] Exploitation failed: {}".format(str(e))) if __name__ == "__main__": exploit_lpe()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8486", "sourceIdentifier": "[email protected]", "published": "2025-10-15T15:16:06.897", "lastModified": "2026-02-02T15:36:16.413", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A potential vulnerability was reported in PC Manager 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-250"}]}], "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"]}]}}