Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for CVE-2024-26234.

Upgrade to Pro
CVE-2024-26234 Microsoft Sentinel · KQL

Detect CVE-2024-26234 — Windows Proxy Driver Spoofing via Malicious Signed Driver in Microsoft Sentinel

Detects exploitation of CVE-2024-26234, a Windows Proxy Driver Spoofing vulnerability where threat actors abuse Microsoft's WHQL signing process to load a malicious signed kernel driver. The driver installs a proxy component enabling persistent backdoor access. Severity is elevated given weaponized exploit status and kernel-level code execution potential.

MITRE ATT&CK

Tactic
Persistence Privilege Escalation Defense Evasion

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
let suspiciousDrivers = DeviceEvents
| where ActionType == "DriverLoad"
| where InitiatingProcessFileName !in~ ("System", "smss.exe", "services.exe")
| project DeviceId, Timestamp, FileName, FolderPath, SHA256, InitiatingProcessFileName;
let signedByMicrosoft = suspiciousDrivers
| join kind=leftouter (
    DeviceFileCertificateInfo
    | where Signer contains "Microsoft" or Signer contains "Windows"
    | project SHA256, Signer, SignerHash, IsTrusted
) on SHA256
| where IsTrusted == true;
signedByMicrosoft
| join kind=inner (
    DeviceNetworkEvents
    | where RemotePort in (80, 443, 1080, 8080, 8443)
    | where InitiatingProcessFileName endswith ".sys" or RemoteUrl contains "proxy"
    | project DeviceId, NetworkTimestamp=Timestamp, RemoteIP, RemoteUrl, RemotePort, InitiatingProcessFileName
) on DeviceId
| where abs(datetime_diff('minute', Timestamp, NetworkTimestamp)) < 30
| project Timestamp, DeviceId, DriverFile=FileName, FolderPath, SHA256, Signer, RemoteIP, RemoteUrl, RemotePort
| order by Timestamp desc
high severity medium confidence

Correlates kernel driver loads signed by Microsoft with subsequent outbound proxy-like network connections from .sys processes, a key behavioral indicator of CVE-2024-26234 exploitation.

Data Sources

Microsoft Defender for EndpointMicrosoft Sentinel

Required Tables

DeviceEventsDeviceFileCertificateInfoDeviceNetworkEvents

False Positives & Tuning

  • Legitimate Microsoft-signed network filter drivers (e.g., WFP callout drivers) establishing management connections
  • VPN or network proxy software using signed kernel drivers for traffic interception
  • Security products with kernel drivers performing telemetry upload
  • Windows Update components loading signed drivers during patch cycles

Other platforms for CVE-2024-26234


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Deploy a self-signed WHQL-mimicking kernel driver

    Expected signal: Windows Security Event ID 7045 (service install) with ServiceType=kernel, Sysmon Event ID 6 (driver load) with ImageLoaded path in ProgramData, and Code Integrity event in Microsoft-Windows-CodeIntegrity/Operational log.

  2. Test 2Simulate proxy connection from a .sys-named process

    Expected signal: Sysmon Event ID 3 (network connection) with Image path ending in .sys, destination ports 1080 and 8080, and non-loopback destination IP.

  3. Test 3Extract and inspect driver certificate chain for WHQL abuse indicators

    Expected signal: Process creation event for sigcheck64.exe with command line referencing the driver path. Output file creation in C:\Temp\.

  4. Test 4Registry persistence check for kernel driver service entry

    Expected signal: Sysmon Event ID 13 (registry value set) for HKLM\SYSTEM\CurrentControlSet\Services\SimProxyDrv\ImagePath with a value pointing to a non-standard driver path, and Windows Security Event ID 4657 (registry value modified) if object access auditing is enabled.

Unlock playbooks & atomic tests with Pro

Get the full detection package for CVE-2024-26234 — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections