Name:Windows Drivers Loaded by Signature id:d2d4af6a-6c2b-4d79-80c5-fc2cf12a2f68 version:3 date:2024-10-17 author:Michael Haag, Splunk status:production type:Hunting Description:The following analytic identifies all drivers being loaded on Windows systems using Sysmon EventCode 6 (Driver Load). It leverages fields such as driver path, signature status, and hash to detect potentially suspicious drivers. This activity is significant for a SOC as malicious drivers can be used to gain kernel-level access, bypass security controls, or persist in the environment. If confirmed malicious, this activity could allow an attacker to execute arbitrary code with high privileges, leading to severe system compromise and potential data exfiltration. Data_source:
-Sysmon EventID 6
search:`sysmon` EventCode=6 | stats min(_time) as firstTime max(_time) as lastTime values(ImageLoaded) count by dest Signed Signature service_signature_verified service_signature_exists Hashes | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)` | `windows_drivers_loaded_by_signature_filter`
how_to_implement:To successfully implement this search, you need to be ingesting logs with the process name, parent process, and command-line executions from your endpoints. If you are using Sysmon, you must have the latest version of the Sysmon TA. Most EDR products provide the ability to review driver loads, or module loads, and using a query as such help with hunting for malicious drivers. known_false_positives:This analytic is meant to assist with identifying drivers loaded in the environment and not to be setup for notables off the bat. References: -https://redcanary.com/blog/tracking-driver-inventory-to-expose-rootkits/ -https://attack.mitre.org/techniques/T1014/ -https://www.fuzzysecurity.com/tutorials/28.html drilldown_searches:
: tags: analytic_story: - 'Windows Drivers' - 'CISA AA22-320A' - 'AgentTesla' - 'BlackByte Ransomware' asset_type:Endpoint confidence:70 impact:60 message:A driver has loaded on $dest$. mitre_attack_id: - 'T1014' - 'T1068' observable: name:'dest' type:'Endpoint' - role: - 'Victim' product: - 'Splunk Enterprise' - 'Splunk Enterprise Security' - 'Splunk Cloud' required_fields: - '_time' - 'ImageLoaded' - 'dest' - 'Signed' - 'Signature' - 'service_signature_verified' - 'service_signature_exists' - 'Hashes' risk_score:42 security_domain:endpoint