Potential Mpclient.DLL Sideloading Via Defender Binaries

Detects potential sideloading of "mpclient.dll" by Windows Defender processes ("MpCmdRun" and "NisSrv") from their non-default directory.

Sigma rule (View on GitHub)

 1title: Potential Mpclient.DLL Sideloading Via Defender Binaries
 2id: 7002aa10-b8d4-47ae-b5ba-51ab07e228b9
 3related:
 4    - id: 418dc89a-9808-4b87-b1d7-e5ae0cb6effc
 5      type: similar
 6status: test
 7description: Detects potential sideloading of "mpclient.dll" by Windows Defender processes ("MpCmdRun" and "NisSrv") from their non-default directory.
 8references:
 9    - https://www.sentinelone.com/blog/living-off-windows-defender-lockbit-ransomware-sideloads-cobalt-strike-through-microsoft-security-tool
10author: Bhabesh Raj
11date: 2022-08-01
12modified: 2023-08-04
13tags:
14    - attack.privilege-escalation
15    - attack.persistence
16    - attack.defense-evasion
17    - attack.t1574.001
18logsource:
19    product: windows
20    category: process_creation
21detection:
22    selection:
23        Image|endswith:
24            - '\MpCmdRun.exe'
25            - '\NisSrv.exe'
26    filter_main_known_locations:
27        Image|startswith:
28            - 'C:\Program Files (x86)\Windows Defender\'
29            - 'C:\Program Files\Microsoft Security Client\'
30            - 'C:\Program Files\Windows Defender\'
31            - 'C:\ProgramData\Microsoft\Windows Defender\Platform\'
32            - 'C:\Windows\WinSxS\'
33    condition: selection and not 1 of filter_main_*
34falsepositives:
35    - Unlikely
36level: high

References

Related rules

to-top