5b13666054
* Windows Rules Att&ck Mapping review
* Bump updated_date and fix reference URLs
* Fix subtechnique
* Fix test errors
(cherry picked from commit 61afb1c1c0)
51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[metadata]
|
|
creation_date = "2020/08/13"
|
|
maturity = "production"
|
|
updated_date = "2021/09/23"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Detects the creation or modification of a new Group Policy based scheduled task or service. These methods are used for
|
|
legitimate system administration, but can also be abused by an attacker with domain admin permissions to execute a
|
|
malicious payload remotely on all or a subset of the domain joined machines.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Creation or Modification of a new GPO Scheduled Task or Service"
|
|
risk_score = 21
|
|
rule_id = "c0429aa8-9974-42da-bfb6-53a0a515a145"
|
|
severity = "low"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Persistence"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
file where event.type != "deletion" and
|
|
file.path : ("?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\ScheduledTasks\\ScheduledTasks.xml",
|
|
"?:\\Windows\\SYSVOL\\domain\\Policies\\*\\MACHINE\\Preferences\\Preferences\\Services\\Services.xml") and
|
|
not process.name : "dfsrs.exe"
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1053"
|
|
reference = "https://attack.mitre.org/techniques/T1053/"
|
|
name = "Scheduled Task/Job"
|
|
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1053.005"
|
|
name = "Scheduled Task"
|
|
reference = "https://attack.mitre.org/techniques/T1053/005/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0003"
|
|
reference = "https://attack.mitre.org/tactics/TA0003/"
|
|
name = "Persistence"
|
|
|