Skip to content

Commit 8cc16d2

Browse files
author
Florian Roth
committed
fix: more FP reductions
1 parent 038f205 commit 8cc16d2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

rules/windows/other/win_wmi_persistence.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ detection:
2626
condition: selection and 1 of keywords or selection2
2727
falsepositives:
2828
- Unknown (data set is too small; further testing needed)
29-
level: high
29+
level: medium
3030

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: Suspicious Userinit Child Process
22
status: experimental
3-
description: Detects the creation of a process from Windows task manager
3+
description: Detects a suspicious child process of userinit
44
references:
55
- https://twitter.com/SBousseaden/status/1139811587760562176
66
author: Florian Roth (rule), Samir Bousseaden (idea)
@@ -11,14 +11,14 @@ logsource:
1111
detection:
1212
selection:
1313
ParentImage: '*\userinit.exe'
14-
filter:
15-
CommandLine:
16-
- '*\explorer.exe*'
17-
- '*\\netlogon\\*'
18-
condition: selection and not filter
14+
filter1:
15+
CommandLine: '*\\netlogon\\*'
16+
filter2:
17+
Image: '*\explorer.exe'
18+
condition: selection and not filter1 and not filter2
1919
fields:
2020
- CommandLine
2121
- ParentCommandLine
2222
falsepositives:
2323
- Administrative scripts
24-
level: high
24+
level: medium

0 commit comments

Comments
 (0)