← All posts

BYOVD Attacks Are Eating Windows Security Alive — Here's How to Stop Them

Bring Your Own Vulnerable Driver attacks let adversaries load signed-but-exploitable kernel drivers to disable your entire security stack. Here's how the attack works, why it's exploding in 2026, and what WinSentinel's Driver Security module does about it.

In April 2026, Microsoft's Threat Intelligence team reported that BYOVD (Bring Your Own Vulnerable Driver) attacks were present in 38% of ransomware incidents they investigated in Q1 — up from 12% in 2024. The technique is devastatingly simple: attackers don't need a kernel exploit. They just need a legitimately signed driver that happens to have a vulnerability, and Windows will happily load it for them.

Once a vulnerable driver is running in Ring 0, the attacker has kernel-level access. From there, they can disable Defender, kill EDR processes, manipulate security event logs, and establish persistence that survives reboots. Your entire user-mode security stack — every agent, every monitor, every hook — becomes irrelevant because the attacker is operating below it.

Why BYOVD Is the Perfect Attack

From an attacker's perspective, BYOVD is absurdly practical:

The economics are stark: why spend months finding a Windows kernel zero-day when you can drop RTCore64.sys (MSI Afterburner's driver, signed by a valid certificate, exploitable since 2019) and get the same kernel access for free?

The Attack Chain in Practice

Here's how a typical BYOVD attack unfolds:

# Step 1: Attacker already has user-level access (phishing, RCE, etc.)
# They drop a known-vulnerable signed driver to disk:
copy payload.sys C:\Windows\Temp\RTCore64.sys

# Step 2: Load the driver via service control manager
sc create EvilDriver type=kernel binPath=C:\Windows\Temp\RTCore64.sys
sc start EvilDriver

# Step 3: Exploit the driver's vulnerability to get arbitrary kernel R/W
# (toolkit-specific — usually a DeviceIoControl call to an exposed IOCTL)

# Step 4: Patch kernel structures to disable Defender/EDR
# - Zero out callback registration for process/thread creation
# - Remove minifilter callbacks (filesystem monitoring)
# - Patch ETW provider registration (kill telemetry)

# Step 5: With security stack blind, deploy ransomware/exfiltrate freely

Steps 3–5 happen in under 2 seconds. By the time any alert fires (if one even can), the security stack is already dead.

Microsoft's Vulnerable Driver Blocklist: Necessary but Insufficient

Microsoft maintains a blocklist of known vulnerable drivers that Windows won't load. The problem:

The blocklist is a good layer. It's not sufficient on its own.

What WinSentinel's Driver Security Module Checks

Module #27 (Driver Security) specifically targets BYOVD preconditions and active exploitation indicators. Here's what it inspects:

$ winsentinel --audit --modules drivers

 Driver Security
 ─────────────────────────────────────────────────────
 [CRITICAL] Known vulnerable driver loaded: RTCore64.sys
   → Hash: a2f...(known BYOVD payload)
   → Matches LOLDrivers catalog entry
   → Fix: sc stop RTCore64; sc delete RTCore64; del C:\path\to\driver

 [WARNING] Unsigned driver loaded: sketchy_hw_monitor.sys
   → No valid Authenticode signature
   → Path: C:\Windows\System32\drivers\sketchy_hw_monitor.sys
   → Investigate: may be benign hardware utility or persistence

 [WARNING] HVCI (Memory Integrity) not enabled
   → Microsoft Vulnerable Driver Blocklist not enforced at hypervisor level
   → Fix: Enable via Windows Security → Device Security → Core Isolation

 [WARNING] Driver loaded from user-writable path
   → C:\Users\admin\Downloads\gpu_overclock.sys
   → Legitimate drivers should be in protected system directories

 [INFO]    3 drivers signed with expired certificates
   → Not immediately exploitable but indicates stale/abandoned software

The Specific Checks Under the Hood

WinSentinel's driver module performs five distinct analysis passes:

1. Hash matching against known-vulnerable drivers. We maintain a hash database derived from the LOLDrivers project and Microsoft's blocklist. Every loaded driver's SHA-256 is compared. This catches the most common BYOVD payloads — the 50-100 drivers that appear in actual attack toolkits.

2. Signature validation. Drivers should be signed by their vendor with a valid, non-revoked certificate. WinSentinel checks for: no signature at all, self-signed certificates, revoked certificates (check against cached CRL), and expired certificates. An unsigned driver in C:\Windows\System32\drivers is a red flag.

3. Path analysis. Legitimate drivers live in C:\Windows\System32\drivers\ or vendor-specific subdirectories with proper ACLs. A driver loaded from C:\Users\, C:\Temp\, or C:\ProgramData\ is suspicious — it suggests something loaded it outside the normal installation flow.

4. HVCI / VBS status. If Virtualization-Based Security and Hypervisor-enforced Code Integrity (HVCI) are enabled, the kernel memory integrity protection is active and the Microsoft blocklist is enforced at the hypervisor level. This is the strongest mitigation against BYOVD. WinSentinel checks whether it's available (requires compatible hardware) and whether it's enabled.

5. Driver age and vendor analysis. Drivers from vendors that no longer exist, or drivers that haven't been updated in 5+ years, are more likely to contain unpatched vulnerabilities. WinSentinel flags ancient drivers as informational findings — not immediately critical, but worth investigating.

Hardening Against BYOVD: The Practical Playbook

You can't prevent BYOVD entirely (you'd have to block all kernel drivers, which breaks hardware). But you can make it dramatically harder:

Enable HVCI (Memory Integrity). This is the single most effective mitigation. It enforces the vulnerable driver blocklist at the hypervisor level, which attackers can't easily bypass from user mode.

# Check current status
Get-CimInstance -ClassName Win32_DeviceGuard -Namespace root\Microsoft\Windows\DeviceGuard |
  Select VirtualizationBasedSecurityStatus, CodeIntegrityPolicyEnforcementStatus

# Enable via registry (requires reboot)
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 1 /f

Keep Windows Update current. The vulnerable driver blocklist updates ship via cumulative updates. Falling behind on patches means your blocklist is stale. WinSentinel's Update module flags machines more than 14 days behind — now you know why that matters beyond just patching.

Audit loaded drivers regularly. Run winsentinel --audit --modules drivers weekly. New vulnerable drivers appear in attack toolkits before they hit Microsoft's blocklist. WinSentinel's hash database updates more frequently than the OS blocklist.

Restrict driver installation. Standard users shouldn't be able to install drivers. Verify that only administrators can load kernel drivers:

# Check driver installation policy
Get-ItemProperty "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverInstall\Restrictions" -ErrorAction SilentlyContinue

# Restrict to admins only
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DriverInstall\Restrictions" /v AllowUserDeviceClasses /t REG_DWORD /d 0 /f

Remove unnecessary hardware utilities. That RGB controller software you installed for your keyboard? It probably loaded a kernel driver with an exposed IOCTL. MSI Afterburner, ASUS AI Suite, EVGA Precision — all have shipped drivers that appear on the LOLDrivers list. If you don't actively use the software, uninstall it and remove the driver.

Why This Matters More Every Month

BYOVD is trending upward because it's the logical response to improving user-mode security. As Defender, EDR tools, and application control get better at blocking traditional attacks, adversaries move to the one layer that can override everything: the kernel. And they don't need to find new vulnerabilities — the legacy driver ecosystem provides a nearly infinite supply of signed, exploitable kernel code.

The pattern is clear in threat reports: Scattered Spider uses BYOVD. BlackCat ransomware affiliates use BYOVD. The Lazarus Group uses BYOVD. It's not a sophisticated nation-state technique anymore — it's a commodity tactic available to any ransomware operator with a $500 toolkit.

Run winsentinel --audit --modules drivers today. If HVCI isn't enabled, enable it. If you have ancient hardware utility drivers loaded, remove them. And if WinSentinel flags a known-vulnerable driver hash — investigate immediately. That's not a false positive. That's either a dangerously outdated utility or active exploitation.