mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 01:45:21 +00:00
Transformed rule
I would try it like this - the 4th selection for uncommon parents of explorer.exe looks prone to FPs Fixed Typo Changes to title and description
This commit is contained in:
parent
8e6295e402
commit
378ba5b38f
@ -1,6 +1,6 @@
|
|||||||
title: Windows processes with wrong parent
|
title: Windows Processes Suspicious Parent
|
||||||
status: experimental
|
status: experimental
|
||||||
description: Detect scenarios when malicious program is disguised as legitimate process
|
description: Detect suspicious parent processes of well-known Windows processes
|
||||||
author: 'vburov'
|
author: 'vburov'
|
||||||
references:
|
references:
|
||||||
- https://securitybytes.io/blue-team-fundamentals-part-two-windows-processes-759fe15965e2
|
- https://securitybytes.io/blue-team-fundamentals-part-two-windows-processes-759fe15965e2
|
||||||
@ -14,34 +14,33 @@ logsource:
|
|||||||
service: sysmon
|
service: sysmon
|
||||||
definition: 'Requirements: Sysmon'
|
definition: 'Requirements: Sysmon'
|
||||||
detection:
|
detection:
|
||||||
selection:
|
selection1:
|
||||||
EventID: 1
|
EventID: 1
|
||||||
filter1:
|
|
||||||
Image:
|
Image:
|
||||||
- '*\svchost.exe'
|
- '*\svchost.exe'
|
||||||
- '*\taskhost.exe'
|
- '*\taskhost.exe'
|
||||||
|
filter1:
|
||||||
ParentImage:
|
ParentImage:
|
||||||
- '*\services.exe'
|
- '*\services.exe'
|
||||||
filter2:
|
selection2:
|
||||||
|
EventID: 1
|
||||||
Image:
|
Image:
|
||||||
- '*\lsm.exe'
|
- '*\lsm.exe'
|
||||||
- '*\lsass.exe'
|
- '*\lsass.exe'
|
||||||
- '*\services.exe'
|
- '*\services.exe'
|
||||||
|
filter2:
|
||||||
ParentImage:
|
ParentImage:
|
||||||
- '*\wininit.exe'
|
- '*\wininit.exe'
|
||||||
filter3:
|
selection3:
|
||||||
|
EventID: 1
|
||||||
Image:
|
Image:
|
||||||
- '*\csrss.exe'
|
- '*\csrss.exe'
|
||||||
- '*\wininit.exe'
|
- '*\wininit.exe'
|
||||||
- '*\winlogon.exe'
|
- '*\winlogon.exe'
|
||||||
|
filter3:
|
||||||
ParentImage:
|
ParentImage:
|
||||||
- '*\smss.exe'
|
- '*\smss.exe'
|
||||||
filter4:
|
condition: ( selection1 and not filter1 ) or ( selection2 and not filter2 ) or ( selection3 and not filter3 )
|
||||||
Image:
|
|
||||||
- '*\explorer.exe'
|
|
||||||
ParentImage:
|
|
||||||
- '*\userinit.exe'
|
|
||||||
condition: selection and not ( filter1 or filter2 or filter3 or filter4 )
|
|
||||||
falsepositives:
|
falsepositives:
|
||||||
- None
|
- Unknown please report back
|
||||||
level: high
|
level: high
|
||||||
|
Loading…
Reference in New Issue
Block a user