Skip to content

Commit

Permalink
Update defense_evasion_via_filter_manager.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Samirbous authored Feb 24, 2025
1 parent 4b8676c commit a78dbe1
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions rules/windows/defense_evasion_via_filter_manager.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
creation_date = "2020/02/18"
integration = ["endpoint", "windows", "m365_defender", "system"]
maturity = "production"
updated_date = "2025/02/21"
updated_date = "2025/02/24"
min_stack_version = "8.14.0"
min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."

Expand Down Expand Up @@ -124,18 +124,14 @@ type = "eql"
query = '''
process where host.os.type == "windows" and event.type == "start" and
process.name : "fltMC.exe" and process.args : "unload" and
not
(
(
process.executable : "?:\\Program Files (x86)\\ManageEngine\\UEMS_Agent\\bin\\DCFAService64.exe" and
process.args : ("DFMFilter", "DRMFilter")
) or
(
process.executable : "?:\\Windows\\SysWOW64\\msiexec.exe" and
process.args : ("BrFilter_*", "BrCow_*") and
user.id : "S-1-5-18"
)
)
not process.parent.executable :
("?:\\Program Files (x86)\\ManageEngine\\UEMS_Agent\\bin\\DCFAService64.exe",
"?:\\Windows\\SysWOW64\\msiexec.exe",
"?:\\Program Files\\Bitdefender\\Endpoint Security\\installer\\installer.exe",
"?:\\Program Files\\Bitdefender\\Endpoint Security\\EPSecurityService.exe",
"?:\\Program Files\\Bitdefender\\Bitdefender Security\\productcfg.exe",
"?:\\Program Files\\Bitdefender\\Bitdefender Security\\bdservicehost.exe",
"?:\\Program Files\\Bitdefender\\EndpointSetupInformation\\{*}\\Installer.exe")
'''


Expand Down

0 comments on commit a78dbe1

Please sign in to comment.