bf202b6b6c
* 18 converted eql rules (not all prod)
62 lines
1.7 KiB
TOML
62 lines
1.7 KiB
TOML
[metadata]
|
|
creation_date = "2020/09/02"
|
|
ecs_version = ["1.6.0"]
|
|
maturity = "production"
|
|
updated_date = "2020/09/02"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies an executable created by a Microsoft Office application and subsequently executed. These processes are often
|
|
launched via scripts inside documents or during exploitation of MS Office applications.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["logs-endpoint.events.*", "winlogbeat-*"]
|
|
language = "eql"
|
|
license = "Elastic License"
|
|
name = "Execution of File Written or Modified by Microsoft Office"
|
|
risk_score = 21
|
|
rule_id = "0d8ad79f-9025-45d8-80c1-4f0cd3c5e8e5"
|
|
severity = "high"
|
|
tags = ["Elastic", "Windows"]
|
|
type = "eql"
|
|
|
|
query = '''
|
|
sequence with maxspan=2h
|
|
[file where event.type != "delete" and file.extension == "exe" and
|
|
process.name in ("winword.exe",
|
|
"excel.exe",
|
|
"outlook.exe",
|
|
"powerpnt.exe",
|
|
"eqnedt32.exe",
|
|
"fltldr.exe",
|
|
"mspub.exe",
|
|
"msaccess.exe")
|
|
] by host.id, file.path
|
|
[process where event.type in ("start", "process_started")] by host.id, process.executable
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1064"
|
|
name = "Scripting"
|
|
reference = "https://attack.mitre.org/techniques/T1064/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1192"
|
|
name = "Spearphishing Link"
|
|
reference = "https://attack.mitre.org/techniques/T1192/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1193"
|
|
name = "Spearphishing Attachment"
|
|
reference = "https://attack.mitre.org/techniques/T1193/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0002"
|
|
name = "Execution"
|
|
reference = "https://attack.mitre.org/tactics/TA0002/"
|