A kernel driver was loaded. ImageLoaded (driver path), Hashes, Signed, Signature are key.
Rootkits and kernel-level implants load malicious drivers. BYOVD (Bring Your Own Vulnerable Driver) attacks load legitimate but vulnerable drivers to exploit for kernel code execution. Tools: TDSSKiller, LOLDrivers. Unsigned drivers or drivers from suspicious paths are critical indicators.
Alert: Signed=false. Alert: ImageLoaded from user writable paths. Alert: known vulnerable drivers from LOLDrivers list. Very low false-positive rate for unsigned drivers in modern Windows.
ImageCommandLineParentImageUserHashes | Tactic | Technique |
|---|---|
| Persistence | Kernel Modules and Extensions (T1547.006) |
| Defense Evasion | Rootkit (T1014) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
title: Unsigned Driver Loaded
status: stable
description: Unsigned kernel driver loaded — possible rootkit or BYOVD attack
author: theadminstack.com
date: 2026/05/16
logsource:
category: driver_load
product: windows
detection:
selection:
Signed: 'false'
condition: selection
falsepositives:
- Development environments
- Some legitimate but unsigned hardware drivers
level: high
tags:
- attack.persistence
- attack.t1547.006
- attack.defense_evasion
Event
| where EventLog == "Microsoft-Windows-Sysmon/Operational" and EventID == 6 // Driver loaded
// EventData holds: Image, CommandLine, ParentImage, User, Hashes
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=6
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# Driver loaded — add EventData fields: Image, CommandLine, ParentImage, User`
Driver loaded. A kernel driver was loaded. ImageLoaded (driver path), Hashes, Signed, Signature are key.
Event 6 is written to the Microsoft-Windows-Sysmon/Operational channel by Microsoft-Windows-Sysmon. Requires Sysmon installed with a config that logs this event (e.g. SwiftOnSecurity / Olaf Hartong).
Event 6 is associated with: Kernel Modules and Extensions (T1547.006), Rootkit (T1014).
Alert: Signed=false. Alert: ImageLoaded from user writable paths. Alert: known vulnerable drivers from LOLDrivers list. Very low false-positive rate for unsigned drivers in modern Windows.