52 lines
1.8 KiB
TOML
52 lines
1.8 KiB
TOML
[metadata]
|
|
creation_date = "2020/11/25"
|
|
integration = ["endpoint", "windows", "sentinel_one_cloud_funnel", "m365_defender"]
|
|
maturity = "production"
|
|
min_stack_comments = "Breaking change at 8.14.0 for the Windows Integration."
|
|
min_stack_version = "8.14.0"
|
|
updated_date = "2024/10/15"
|
|
|
|
[rule]
|
|
author = ["Elastic"]
|
|
description = """
|
|
Identifies registry write modifications to hide an encoded portable executable. This could be indicative of adversary
|
|
defense evasion by avoiding the storing of malicious content directly on disk.
|
|
"""
|
|
from = "now-9m"
|
|
index = ["logs-endpoint.events.registry-*", "endgame-*", "logs-windows.sysmon_operational-*", "logs-sentinel_one_cloud_funnel.*", "winlogbeat-*", "logs-m365_defender.event-*"]
|
|
language = "eql"
|
|
license = "Elastic License v2"
|
|
name = "Encoded Executable Stored in the Registry"
|
|
risk_score = 47
|
|
rule_id = "93c1ce76-494c-4f01-8167-35edfb52f7b1"
|
|
severity = "medium"
|
|
tags = ["Domain: Endpoint", "OS: Windows", "Use Case: Threat Detection", "Tactic: Defense Evasion", "Data Source: Elastic Endgame", "Data Source: Elastic Defend", "Data Source: Sysmon", "Data Source: SentinelOne", "Data Source: Microsoft Defender for Endpoint"]
|
|
timestamp_override = "event.ingested"
|
|
type = "eql"
|
|
|
|
query = '''
|
|
registry where host.os.type == "windows" and
|
|
/* update here with encoding combinations */
|
|
registry.data.strings : "TVqQAAMAAAAEAAAA*"
|
|
'''
|
|
|
|
|
|
[[rule.threat]]
|
|
framework = "MITRE ATT&CK"
|
|
[[rule.threat.technique]]
|
|
id = "T1112"
|
|
name = "Modify Registry"
|
|
reference = "https://attack.mitre.org/techniques/T1112/"
|
|
|
|
[[rule.threat.technique]]
|
|
id = "T1140"
|
|
name = "Deobfuscate/Decode Files or Information"
|
|
reference = "https://attack.mitre.org/techniques/T1140/"
|
|
|
|
|
|
[rule.threat.tactic]
|
|
id = "TA0005"
|
|
name = "Defense Evasion"
|
|
reference = "https://attack.mitre.org/tactics/TA0005/"
|
|
|