Files
sigma-rules/rules/windows/execution_pdf_written_file.toml
T
Justin Ibarra 97ee8cc9ac Refresh beats and ecs schemas and default to use latest to validate (#570)
* Refresh beats and ecs schemas and default to use latest to validate
* remove incorrect ecs_version from zoom rule
* remove stale ecs_version from rules
2020-12-01 13:24:20 -09:00

64 lines
1.8 KiB
TOML

[metadata]
creation_date = "2020/09/02"
maturity = "production"
updated_date = "2020/11/03"
[rule]
author = ["Elastic"]
description = """
Identifies a suspicious file that was written by a PDF reader application and subsequently executed. These processes are
often launched via exploitation of PDF applications.
"""
from = "now-9m"
index = ["logs-endpoint.events.*", "winlogbeat-*"]
language = "eql"
license = "Elastic License"
name = "Execution of File Written or Modified by PDF Reader"
risk_score = 21
rule_id = "1defdd62-cd8d-426e-a246-81a37751bb2b"
severity = "high"
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Execution"]
type = "eql"
query = '''
sequence with maxspan=2h
[file where event.type != "deletion" and file.extension : "exe" and
(process.name : "AcroRd32.exe" or
process.name : "rdrcef.exe" or
process.name : "FoxitPhantomPDF.exe" or
process.name : "FoxitReader.exe") and
not (file.name : "FoxitPhantomPDF.exe" or
file.name : "FoxitPhantomPDFUpdater.exe" or
file.name : "FoxitReader.exe" or
file.name : "FoxitReaderUpdater.exe" or
file.name : "AcroRd32.exe" or
file.name : "rdrcef.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/"