Skip to content

Commit 34809f5

Browse files
Samirbousgithub-actions[bot]
authored andcommitted
Update privilege_escalation_gpo_schtask_service_creation.toml (#4152)
(cherry picked from commit 8f56b7d)
1 parent f931272 commit 34809f5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

rules/windows/privilege_escalation_gpo_schtask_service_creation.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
creation_date = "2020/08/13"
33
integration = ["endpoint", "windows", "m365_defender", "sentinel_one_cloud_funnel"]
44
maturity = "production"
5-
updated_date = "2024/10/10"
5+
updated_date = "2024/10/14"
66
min_stack_version = "8.13.0"
77
min_stack_comments = "Breaking change at 8.13.0 for SentinelOne Integration."
88

@@ -37,12 +37,13 @@ timestamp_override = "event.ingested"
3737
type = "eql"
3838

3939
query = '''
40-
file where host.os.type == "windows" and event.type != "deletion" and file.name : "ScheduledTasks.xml" and
40+
file where host.os.type == "windows" and event.type != "deletion" and event.action != "open" and
41+
file.name : ("ScheduledTasks.xml", "Services.xml") and
4142
file.path : (
4243
"?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\ScheduledTasks\\ScheduledTasks.xml",
4344
"?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\Services\\Services.xml"
4445
) and
45-
not process.name : "dfsrs.exe"
46+
not process.executable : "C:\\Windows\\System32\\dfsrs.exe"
4647
'''
4748

4849

0 commit comments

Comments
 (0)