Memory Threat - Prevented- Elastic Defend

Generates a detection alert each time an Elastic Defend alert for memory signatures are received. Enabling this rule allows you to immediately begin investigating your Endpoint memory signature alerts. This rule identifies Elastic Defend memory signature preventions only, and does not include detection only alerts.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2024/03/24"
  3integration = ["endpoint"]
  4maturity = "production"
  5min_stack_comments = "Defend alerting adjustments patch to distinguish prevention and detection."
  6min_stack_version = "8.16.0"
  7promotion = true
  8updated_date = "2025/03/21"
  9
 10[rule]
 11author = ["Elastic"]
 12description = """
 13Generates a detection alert each time an Elastic Defend alert for memory signatures are received. Enabling this rule
 14allows you to immediately begin investigating your Endpoint memory signature alerts. This rule identifies Elastic Defend
 15memory signature preventions only, and does not include detection only alerts.
 16"""
 17enabled = false
 18from = "now-2m"
 19index = ["logs-endpoint.alerts-*"]
 20interval = "1m"
 21language = "kuery"
 22license = "Elastic License v2"
 23max_signals = 1000
 24name = "Memory Threat - Prevented- Elastic Defend"
 25note = """## Triage and analysis
 26
 27### Investigating Memory Threat - Prevented- Elastic Defend
 28
 29Elastic Endpoint’s memory threat protection adds a layer of coverage for advanced attacks which avoid the traditional approach of writing payloads to disk. Instead, the malicious code runs only in-memory, an effective technique for evading legacy security products. There are currently two sub-categories of memory threat protection.
 30
 31The first category is referred to as memory signatures and is available on all supported OS. It operates by periodically scanning process executable memory regions based on their activity to identify and terminate known bad malware.
 32
 33The second category is referred to as shellcode thread and is unique to Windows endpoints today. A common technique of in-memory malware is to load the payload in a memory region not backed by a file on disk and create a thread to execute it.
 34
 35### Possible investigation steps
 36
 37- Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
 38- Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts :
 39   - For shellcode alerts, the key for bucketing alerts is stored in the `Memory_protection.unique_key_v1` field.
 40   - For Memory signature alerts, bucket based on the signatures which match `rule.name`.
 41- Examine the following fields if there are any matches on known Yara signatures:
 42  - `process.Ext.memory_region.malware_signature.all_names`
 43  - `Target.process.Ext.memory_region.malware_signature.all_names`
 44  - `process.Ext.memory_region.malware_signature.primary.signature.name`
 45- Review the memory region strings for any suspicious or unique keywords captured in `process.Ext.memory_region.strings` and `Target.process.Ext.memory_region.strings`.
 46- For signature matches review the `process.Ext.memory_region.malware_signature.primary.matches` and `process.Ext.memory_region.malware_signature.secondary.matches` to understand which keywords or byte sequences matched on the memory Yara signature.
 47- For shellcode alerts, check the field `Memory_protection.self_injection` value, if it's false it means it's a remote shellcode injection and you need to review the Target process details like `Target.process.executable` fields.
 48- Even if the acting process is signed, review any unsigned or suspicious loaded libraries (adversaries may use `DLL Side-Loading`) captured in:
 49  - `process.thread.Ext.call_stack.module_path`
 50  - `process.Ext.dll.path and process.Ext.dll.hash.sha256`
 51  - `Target.process.Ext.dll.hash.sha256`
 52  - `Target.process.Ext.dll.path`
 53- If you have access to VirusTotal of similar services, you can also perform vGrep searches to look for files with bytes matching on `process.thread.Ext.start_address_bytes` or `Target.process.thread.Ext.start_address_bytes`.
 54- Investigate any abnormal behavior by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
 55
 56### False positive analysis
 57
 58- False positives may include Yara signature matches on generic keywords or some third party software performing code injection (often all involved files are signed and by the same vendor).
 59
 60### Response and Remediation
 61
 62- Initiate the incident response process based on the outcome of the triage.
 63  - If malicious activity is confirmed, perform a broader investigation to identify the scope of the compromise and determine the appropriate remediation steps.
 64- Implement Elastic Endpoint Security to detect and prevent further post exploitation activities in the environment.
 65   - Contain the affected system by isolating it from the network to prevent further spread of the attack.
 66- If the triage identified malware, search the environment for additional compromised hosts.
 67  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 68  - Stop suspicious processes.
 69  - Immediately block the identified indicators of compromise (IoCs).
 70  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 71- Remove and block malicious artifacts identified during triage.
 72- Restore the affected system to its operational state by applying any necessary patches, updates, or configuration changes.
 73- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
 74- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 75- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 76- Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 77"""
 78references = [
 79    "https://github.com/elastic/protections-artifacts/tree/main/yara",
 80    "https://docs.elastic.co/en/integrations/endpoint",
 81]
 82risk_score = 73
 83rule_id = "06f3a26c-ea35-11ee-a417-f661ea17fbce"
 84rule_name_override = "message"
 85setup = """## Setup
 86
 87### Elastic Defend Alerts
 88This rule is designed to capture specific alerts generated by Elastic Defend.
 89
 90To capture all the Elastic Defend alerts, it is recommended to use all of the Elastic Defend feature-specific protection rules:
 91
 92Behavior - Detected - Elastic Defend (UUID: 0f615fe4-eaa2-11ee-ae33-f661ea17fbce)
 93Behavior - Prevented - Elastic Defend (UUID: eb804972-ea34-11ee-a417-f661ea17fbce)
 94Malicious File - Detected - Elastic Defend (UUID: f2c3caa6-ea34-11ee-a417-f661ea17fbce)
 95Malicious File - Prevented - Elastic Defend (UUID: f87e6122-ea34-11ee-a417-f661ea17fbce)
 96Memory Threat - Detected - Elastic Defend (UUID: 017de1e4-ea35-11ee-a417-f661ea17fbce)
 97Memory Threat - Prevented - Elastic Defend (UUID: 06f3a26c-ea35-11ee-a417-f661ea17fbce)
 98Ransomware - Detected - Elastic Defend (UUID: 0c74cd7e-ea35-11ee-a417-f661ea17fbce)
 99Ransomware - Prevented - Elastic Defend (UUID: 10f3d520-ea35-11ee-a417-f661ea17fbce)
100
101To avoid generating duplicate alerts, you should enable either all feature-specific protection rules or the Endpoint Security (Elastic Defend) rule (UUID: 9a1a2dae-0b5f-4c3d-8305-a268d404c306).
102
103### Additional notes
104
105For information on troubleshooting the maximum alerts warning please refer to this [guide](https://www.elastic.co/guide/en/security/current/alerts-ui-monitor.html#troubleshoot-max-alerts).
106"""
107severity = "high"
108tags = ["Data Source: Elastic Defend", "Tactic: Defense Evasion", "Resources: Investigation Guide"]
109timestamp_override = "event.ingested"
110type = "query"
111
112query = '''
113event.kind : alert and event.code : (memory_signature or shellcode_thread) and event.type : denied and event.outcome : success
114'''
115
116
117[[rule.exceptions_list]]
118id = "endpoint_list"
119list_id = "endpoint_list"
120namespace_type = "agnostic"
121type = "endpoint"
122
123[[rule.risk_score_mapping]]
124field = "event.risk_score"
125operator = "equals"
126value = ""
127
128[[rule.severity_mapping]]
129field = "event.severity"
130operator = "equals"
131severity = "low"
132value = "21"
133
134[[rule.severity_mapping]]
135field = "event.severity"
136operator = "equals"
137severity = "medium"
138value = "47"
139
140[[rule.severity_mapping]]
141field = "event.severity"
142operator = "equals"
143severity = "high"
144value = "73"
145
146[[rule.severity_mapping]]
147field = "event.severity"
148operator = "equals"
149severity = "critical"
150value = "99"
151
152[[rule.threat]]
153framework = "MITRE ATT&CK"
154[[rule.threat.technique]]
155id = "T1055"
156name = "Process Injection"
157reference = "https://attack.mitre.org/techniques/T1055/"
158
159[[rule.threat.technique]]
160id = "T1620"
161name = "Reflective Code Loading"
162reference = "https://attack.mitre.org/techniques/T1620/"
163
164
165[rule.threat.tactic]
166id = "TA0005"
167name = "Defense Evasion"
168reference = "https://attack.mitre.org/tactics/TA0005/"
...
toml

Elastic Endpoint’s memory threat protection adds a layer of coverage for advanced attacks which avoid the traditional approach of writing payloads to disk. Instead, the malicious code runs only in-memory, an effective technique for evading legacy security products. There are currently two sub-categories of memory threat protection.

The first category is referred to as memory signatures and is available on all supported OS. It operates by periodically scanning process executable memory regions based on their activity to identify and terminate known bad malware.

The second category is referred to as shellcode thread and is unique to Windows endpoints today. A common technique of in-memory malware is to load the payload in a memory region not backed by a file on disk and create a thread to execute it.

  • Investigate the process execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence, whether they are located in expected locations, and if they are signed with valid digital signatures.
  • Assess whether this behavior is prevalent in the environment by looking for similar occurrences across hosts :
    • For shellcode alerts, the key for bucketing alerts is stored in the Memory_protection.unique_key_v1 field.
    • For Memory signature alerts, bucket based on the signatures which match rule.name.
  • Examine the following fields if there are any matches on known Yara signatures:
    • process.Ext.memory_region.malware_signature.all_names
    • Target.process.Ext.memory_region.malware_signature.all_names
    • process.Ext.memory_region.malware_signature.primary.signature.name
  • Review the memory region strings for any suspicious or unique keywords captured in process.Ext.memory_region.strings and Target.process.Ext.memory_region.strings.
  • For signature matches review the process.Ext.memory_region.malware_signature.primary.matches and process.Ext.memory_region.malware_signature.secondary.matches to understand which keywords or byte sequences matched on the memory Yara signature.
  • For shellcode alerts, check the field Memory_protection.self_injection value, if it's false it means it's a remote shellcode injection and you need to review the Target process details like Target.process.executable fields.
  • Even if the acting process is signed, review any unsigned or suspicious loaded libraries (adversaries may use DLL Side-Loading) captured in:
    • process.thread.Ext.call_stack.module_path
    • process.Ext.dll.path and process.Ext.dll.hash.sha256
    • Target.process.Ext.dll.hash.sha256
    • Target.process.Ext.dll.path
  • If you have access to VirusTotal of similar services, you can also perform vGrep searches to look for files with bytes matching on process.thread.Ext.start_address_bytes or Target.process.thread.Ext.start_address_bytes.
  • Investigate any abnormal behavior by the subject process, such as network connections, registry or file modifications, and any spawned child processes.
  • False positives may include Yara signature matches on generic keywords or some third party software performing code injection (often all involved files are signed and by the same vendor).
  • Initiate the incident response process based on the outcome of the triage.
    • If malicious activity is confirmed, perform a broader investigation to identify the scope of the compromise and determine the appropriate remediation steps.
  • Implement Elastic Endpoint Security to detect and prevent further post exploitation activities in the environment.
    • Contain the affected system by isolating it from the network to prevent further spread of the attack.
  • If the triage identified malware, search the environment for additional compromised hosts.
    • Implement temporary network rules, procedures, and segmentation to contain the malware.
    • Stop suspicious processes.
    • Immediately block the identified indicators of compromise (IoCs).
    • Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
  • Remove and block malicious artifacts identified during triage.
  • Restore the affected system to its operational state by applying any necessary patches, updates, or configuration changes.
  • Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
  • Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
  • Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
  • Using the incident response data, update logging and audit policies to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).

References

Related rules

to-top