mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
40 lines
2.1 KiB
YAML
40 lines
2.1 KiB
YAML
title: Suspicious Driver Loaded By User
|
|
id: f63508a0-c809-4435-b3be-ed819394d612
|
|
description: Detects the loading of drivers via 'SeLoadDriverPrivilege' required to load or unload a device driver. With this privilege, the user can dynamically load and unload device drivers or other code in to kernel mode. This user right does not apply to Plug and Play device drivers. If you exclude privileged users/admins and processes, which are allowed to do so, you are maybe left with bad programs trying to load malicious kernel drivers. This will detect Ghost-In-The-Logs (https://github.com/bats3c/Ghost-In-The-Logs) and the usage of Sysinternals and various other tools. So you have to work with a whitelist to find the bad stuff.
|
|
status: experimental
|
|
references:
|
|
- https://blog.dylan.codes/evading-sysmon-and-windows-event-logging/
|
|
- https://docs.microsoft.com/en-us/windows/security/threat-protection/auditing/event-4673
|
|
tags:
|
|
- attack.t1089 # an old one
|
|
- attack.defense_evasion
|
|
- attack.t1562.001
|
|
date: 2019/04/08
|
|
author: xknow (@xknow_infosec), xorxes (@xor_xes)
|
|
logsource:
|
|
product: windows
|
|
service: security
|
|
detection:
|
|
selection_1:
|
|
EventID: 4673
|
|
PrivilegeList: 'SeLoadDriverPrivilege'
|
|
Service: '-'
|
|
selection_2:
|
|
ProcessName|endswith:
|
|
- '\Windows\System32\Dism.exe'
|
|
- '\Windows\System32\rundll32.exe'
|
|
- '\Windows\System32\fltMC.exe'
|
|
- '\Windows\HelpPane.exe'
|
|
- '\Windows\System32\mmc.exe'
|
|
- '\Windows\System32\svchost.exe'
|
|
- '\Windows\System32\wimserv.exe'
|
|
- '\procexp64.exe'
|
|
- '\procexp.exe'
|
|
- '\procmon64.exe'
|
|
- '\procmon.exe'
|
|
- '\Google\Chrome\Application\chrome.exe'
|
|
condition: selection_1 and not selection_2
|
|
falsepositives:
|
|
- 'Other legimate tools loading drivers. There are some: Sysinternals, CPU-Z, AVs etc. - but not much. You have to baseline this according to your used products and allowed tools. Also try to exclude users, which are allowed to load drivers.'
|
|
level: medium
|