Update privilege_escalation_gpo_schtask_service_creation.toml (#4152)

This commit is contained in:
Samirbous
2024-10-15 14:06:35 +01:00
committed by GitHub
parent a98161ad2a
commit 8f56b7de5e
@@ -2,7 +2,7 @@
creation_date = "2020/08/13"
integration = ["endpoint", "windows", "m365_defender", "sentinel_one_cloud_funnel"]
maturity = "production"
updated_date = "2024/10/10"
updated_date = "2024/10/14"
min_stack_version = "8.13.0"
min_stack_comments = "Breaking change at 8.13.0 for SentinelOne Integration."
@@ -37,12 +37,13 @@ timestamp_override = "event.ingested"
type = "eql"
query = '''
file where host.os.type == "windows" and event.type != "deletion" and file.name : "ScheduledTasks.xml" and
file where host.os.type == "windows" and event.type != "deletion" and event.action != "open" and
file.name : ("ScheduledTasks.xml", "Services.xml") and
file.path : (
"?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\ScheduledTasks\\ScheduledTasks.xml",
"?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\Services\\Services.xml"
) and
not process.name : "dfsrs.exe"
not process.executable : "C:\\Windows\\System32\\dfsrs.exe"
'''