Potential DLL Sideloading Of DbgModel.DLL

Detects potential DLL sideloading of "DbgModel.dll"

Sigma rule (View on GitHub)

 1title: Potential DLL Sideloading Of DbgModel.DLL
 2id: fef394cd-f44d-4040-9b18-95d92fe278c0
 3status: test
 4description: Detects potential DLL sideloading of "DbgModel.dll"
 5references:
 6    - https://hijacklibs.net/entries/microsoft/built-in/dbgmodel.html
 7author: Gary Lobermier
 8date: 2024-07-11
 9modified: 2024-07-22
10tags:
11    - attack.privilege-escalation
12    - attack.persistence
13    - attack.defense-evasion
14    - attack.t1574.001
15logsource:
16    product: windows
17    category: image_load
18detection:
19    selection:
20        ImageLoaded|endswith: '\dbgmodel.dll'
21    filter_main_generic:
22        ImageLoaded|startswith:
23            - 'C:\Windows\System32\'
24            - 'C:\Windows\SysWOW64\'
25            - 'C:\Windows\WinSxS\'
26    filter_optional_windbg:
27        ImageLoaded|startswith: 'C:\Program Files\WindowsApps\Microsoft.WinDbg_'
28    filter_optional_windows_kits:
29        ImageLoaded|startswith:
30            - 'C:\Program Files (x86)\Windows Kits\'
31            - 'C:\Program Files\Windows Kits\'
32    condition: selection and not 1 of filter_main_* and not 1 of filter_optional_*
33falsepositives:
34    - Legitimate applications loading their own versions of the DLL mentioned in this rule
35level: medium

References

Related rules

to-top