Skip to content

Commit 8e3ad57

Browse files
authored
Update defense_evasion_via_filter_manager.toml (#4493)
1 parent 4b8676c commit 8e3ad57

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

rules/windows/defense_evasion_via_filter_manager.toml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2020/02/18"
33
integration = ["endpoint", "windows", "m365_defender", "system"]
44
maturity = "production"
5-
updated_date = "2025/02/21"
5+
updated_date = "2025/02/24"
66
min_stack_version = "8.14.0"
77
min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
88

@@ -124,18 +124,14 @@ type = "eql"
124124
query = '''
125125
process where host.os.type == "windows" and event.type == "start" and
126126
process.name : "fltMC.exe" and process.args : "unload" and
127-
not
128-
(
129-
(
130-
process.executable : "?:\\Program Files (x86)\\ManageEngine\\UEMS_Agent\\bin\\DCFAService64.exe" and
131-
process.args : ("DFMFilter", "DRMFilter")
132-
) or
133-
(
134-
process.executable : "?:\\Windows\\SysWOW64\\msiexec.exe" and
135-
process.args : ("BrFilter_*", "BrCow_*") and
136-
user.id : "S-1-5-18"
137-
)
138-
)
127+
not process.parent.executable :
128+
("?:\\Program Files (x86)\\ManageEngine\\UEMS_Agent\\bin\\DCFAService64.exe",
129+
"?:\\Windows\\SysWOW64\\msiexec.exe",
130+
"?:\\Program Files\\Bitdefender\\Endpoint Security\\installer\\installer.exe",
131+
"?:\\Program Files\\Bitdefender\\Endpoint Security\\EPSecurityService.exe",
132+
"?:\\Program Files\\Bitdefender\\Bitdefender Security\\productcfg.exe",
133+
"?:\\Program Files\\Bitdefender\\Bitdefender Security\\bdservicehost.exe",
134+
"?:\\Program Files\\Bitdefender\\EndpointSetupInformation\\{*}\\Installer.exe")
139135
'''
140136

141137

0 commit comments

Comments
 (0)