0273d118a6
* Update impact_deleting_backup_catalogs_with_wbadmin.toml * Update impact_deleting_backup_catalogs_with_wbadmin.toml * 1/2 * bump updated_date * 2/3 * Finale * Update persistence_evasion_registry_ifeo_injection.toml * . * Multiple fixes * Missing index * Missing AND
74 lines
2.3 KiB
TOML
74 lines
2.3 KiB
TOML
[metadata]
|
|
creation_date = "2020/02/18"
|
|
integration = ["endpoint", "windows"]
|
|
maturity = "production"
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
min_stack_version = "8.3.0"
|
|
updated_date = "2023/03/06"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
The Application Shim was created to allow for backward compatibility of software as the operating system codebase
|
|
changes over time. This Windows functionality has been abused by attackers to stealthily gain persistence and arbitrary
|
|
code execution in legitimate Windows processes.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["winlogbeat-*", "logs-endpoint.events.*", "logs-windows.*", "endgame-*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Potential Application Shimming via Sdbinst"
|
|
note = """## Setup
|
|
|
|
If enabling an EQL rule on a non-elastic-agent index (such as beats) for versions <8.2, events will not define `event.ingested` and default fallback for EQL rules was not added until 8.2, so you will need to add a custom pipeline to populate `event.ingested` to @timestamp for this rule to work.
|
|
"""
|
|
risk_score = 21
|
|
rule_id = "fd4a992d-6130-4802-9ff8-829b89ae801f"
|
|
severity = "low"
|
|
tags = ["Elastic", "Host", "Windows", "Threat Detection", "Persistence", "Elastic Endgame"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
process where host.os.type == "windows" and event.type == "start" and process.name : "sdbinst.exe" and
|
|
not (process.args : "-m" and process.args : "-bg") and
|
|
not process.args : "-mm"
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1546"
|
|
name = "Event Triggered Execution"
|
|
reference = "https://attack.mitre.org/techniques/T1546/"
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1546.011"
|
|
name = "Application Shimming"
|
|
reference = "https://attack.mitre.org/techniques/T1546/011/"
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0003"
|
|
name = "Persistence"
|
|
reference = "https://attack.mitre.org/tactics/TA0003/"
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1546"
|
|
name = "Event Triggered Execution"
|
|
reference = "https://attack.mitre.org/techniques/T1546/"
|
|
[[rule.threat.technique.subtechnique]]
|
|
id = "T1546.011"
|
|
name = "Application Shimming"
|
|
reference = "https://attack.mitre.org/techniques/T1546/011/"
|
|
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0004"
|
|
name = "Privilege Escalation"
|
|
reference = "https://attack.mitre.org/tactics/TA0004/"
|
|
|