-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [New Rules] DDExec Analysis * Increased rule scope * [New Rule] Dynamic Linker Discovery via od * Revert "[New Rule] Dynamic Linker Discovery via od" This reverts commit c58595b. * [New Rule] Dynamic Linker Discovery via od * [New Rule] Potential Memory Seeking Activity * [New BBR] Suspicious Memory grep Activity * Added endgame + auditd_manager support * Removed auditd_manager support for now * Removed auditd_manager support for now * Update discovery_suspicious_memory_grep_activity.toml --------- Co-authored-by: Samirbous <64742097+Samirbous@users.noreply.github.com> (cherry picked from commit d41855a)
- Loading branch information
1 parent
436d421
commit 420fbef
Showing
4 changed files
with
270 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
[metadata] | ||
creation_date = "2024/02/01" | ||
integration = ["endpoint"] | ||
maturity = "production" | ||
min_stack_comments = "New fields added: required_fields, related_integrations, setup" | ||
min_stack_version = "8.3.0" | ||
updated_date = "2024/02/01" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
description = """ | ||
Monitors for dynamic linker discovery via the od utility. od (octal dump) is a command-line utility in Unix operating | ||
systems used for displaying data in various formats, including octal, hexadecimal, decimal, and ASCII, primarily used | ||
for examining and debugging binary files or data streams. Attackers can leverage od to analyze the dynamic linker by | ||
identifying injection points and craft exploits based on the observed behaviors and structures within these files. | ||
""" | ||
from = "now-9m" | ||
index = ["logs-endpoint.events.*", "endgame-*"] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
name = "Suspicious Dynamic Linker Discovery via od" | ||
references = ["https://github.com/arget13/DDexec"] | ||
risk_score = 21 | ||
rule_id = "0369e8a6-0fa7-4e7a-961a-53180a4c966e" | ||
setup = """ | ||
This rule requires data coming in from Elastic Defend. | ||
### Elastic Defend Integration Setup | ||
Elastic Defend is integrated into the Elastic Agent using Fleet. Upon configuration, the integration allows the Elastic Agent to monitor events on your host and send data to the Elastic Security app. | ||
#### Prerequisite Requirements: | ||
- Fleet is required for Elastic Defend. | ||
- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html). | ||
#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System: | ||
- Go to the Kibana home page and click "Add integrations". | ||
- In the query bar, search for "Elastic Defend" and select the integration to see more details about it. | ||
- Click "Add Elastic Defend". | ||
- Configure the integration name and optionally add a description. | ||
- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads". | ||
- Select a configuration preset. Each preset comes with different default settings for Elastic Agent, you can further customize these later by configuring the Elastic Defend integration policy. [Helper guide](https://www.elastic.co/guide/en/security/current/configure-endpoint-integration-policy.html). | ||
- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions" | ||
- Enter a name for the agent policy in "New agent policy name". If other agent policies already exist, you can click the "Existing hosts" tab and select an existing policy instead. | ||
For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html). | ||
- Click "Save and Continue". | ||
- To complete the integration, select "Add Elastic Agent to your hosts" and continue to the next section to install the Elastic Agent on your hosts. | ||
For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html). | ||
""" | ||
severity = "low" | ||
tags = [ | ||
"Domain: Endpoint", | ||
"OS: Linux", | ||
"Use Case: Threat Detection", | ||
"Tactic: Discovery", | ||
"Data Source: Elastic Defend", | ||
"Data Source: Elastic Endgame" | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
query = ''' | ||
process where host.os.type == "linux" and event.action in ("exec", "exec_event") and event.type == "start" and | ||
process.name == "od" and process.args in ( | ||
"/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2", "/etc/ld.so.preload", "/lib64/ld-linux-x86-64.so.2", | ||
"/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2", "/usr/lib64/ld-linux-x86-64.so.2" | ||
) | ||
''' | ||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
|
||
[[rule.threat.technique]] | ||
id = "T1057" | ||
name = "Process Discovery" | ||
reference = "https://attack.mitre.org/techniques/T1057/" | ||
|
||
[rule.threat.tactic] | ||
id = "TA0007" | ||
name = "Discovery" | ||
reference = "https://attack.mitre.org/tactics/TA0007/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
[metadata] | ||
creation_date = "2024/01/29" | ||
integration = ["endpoint"] | ||
maturity = "production" | ||
min_stack_comments = "New fields added: required_fields, related_integrations, setup" | ||
min_stack_version = "8.3.0" | ||
updated_date = "2024/01/29" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
description = """ | ||
Monitors for /proc/*/maps file reads. The /proc/*/maps file in Linux provides a memory map for a specific process, | ||
detailing the memory segments, permissions, and what files are mapped to these segments. Attackers may read a process's | ||
memory map to identify memory addresses for code injection or process hijacking. | ||
""" | ||
from = "now-9m" | ||
index = ["logs-endpoint.events.*"] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
name = "Suspicious /proc/maps Discovery" | ||
references = ["https://github.com/arget13/DDexec"] | ||
risk_score = 21 | ||
rule_id = "2f95540c-923e-4f57-9dae-de30169c68b9" | ||
setup = """ | ||
This rule requires data coming in from Elastic Defend. | ||
### Elastic Defend Integration Setup | ||
Elastic Defend is integrated into the Elastic Agent using Fleet. Upon configuration, the integration allows the Elastic Agent to monitor events on your host and send data to the Elastic Security app. | ||
#### Prerequisite Requirements: | ||
- Fleet is required for Elastic Defend. | ||
- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html). | ||
#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System: | ||
- Go to the Kibana home page and click "Add integrations". | ||
- In the query bar, search for "Elastic Defend" and select the integration to see more details about it. | ||
- Click "Add Elastic Defend". | ||
- Configure the integration name and optionally add a description. | ||
- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads". | ||
- Select a configuration preset. Each preset comes with different default settings for Elastic Agent, you can further customize these later by configuring the Elastic Defend integration policy. [Helper guide](https://www.elastic.co/guide/en/security/current/configure-endpoint-integration-policy.html). | ||
- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions" | ||
- Enter a name for the agent policy in "New agent policy name". If other agent policies already exist, you can click the "Existing hosts" tab and select an existing policy instead. | ||
For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html). | ||
- Click "Save and Continue". | ||
- To complete the integration, select "Add Elastic Agent to your hosts" and continue to the next section to install the Elastic Agent on your hosts. | ||
For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html). | ||
""" | ||
severity = "low" | ||
tags = [ | ||
"Domain: Endpoint", | ||
"OS: Linux", | ||
"Use Case: Threat Detection", | ||
"Tactic: Discovery", | ||
"Data Source: Elastic Defend" | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
query = ''' | ||
process where host.os.type == "linux" and event.action == "exec" and event.type == "start" and | ||
process.name in ("cat", "grep") and process.args : "/proc/*/maps" and process.entry_leader.name in ( | ||
"bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish" | ||
) | ||
''' | ||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
|
||
[[rule.threat.technique]] | ||
id = "T1057" | ||
name = "Process Discovery" | ||
reference = "https://attack.mitre.org/techniques/T1057/" | ||
|
||
[rule.threat.tactic] | ||
id = "TA0007" | ||
name = "Discovery" | ||
reference = "https://attack.mitre.org/tactics/TA0007/" |
57 changes: 57 additions & 0 deletions
57
rules_building_block/discovery_potential_memory_seeking_activity.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[metadata] | ||
bypass_bbr_timing = true | ||
creation_date = "2024/02/01" | ||
integration = ["endpoint"] | ||
maturity = "production" | ||
min_stack_comments = "New fields added: required_fields, related_integrations, setup" | ||
min_stack_version = "8.3.0" | ||
updated_date = "2024/02/01" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
building_block_type = "default" | ||
description = """ | ||
Monitors for the execution of Unix utilities that may be leveraged as memory address seekers. Attackers may leverage | ||
built-in utilities to seek specific memory addresses, allowing for potential future manipulation/exploitation. | ||
""" | ||
from = "now-9m" | ||
index = ["logs-endpoint.events.*", "endgame-*"] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
name = "Potential Memory Seeking Activity" | ||
references = ["https://github.com/arget13/DDexec"] | ||
risk_score = 21 | ||
rule_id = "035a6f21-4092-471d-9cda-9e379f459b1e" | ||
severity = "low" | ||
tags = [ | ||
"Domain: Endpoint", | ||
"OS: Linux", | ||
"Use Case: Threat Detection", | ||
"Tactic: Discovery", | ||
"Rule Type: BBR", | ||
"Data Source: Elastic Defend", | ||
"Data Source: Elastic Endgame" | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
query = ''' | ||
process where host.os.type == "linux" and event.action in ("exec", "exec_event") and event.type == "start" and ( | ||
(process.name == "tail" and process.args == "-c") or | ||
(process.name == "cmp" and process.args == "-i") or | ||
(process.name in ("hexdump", "xxd") and process.args == "-s") or | ||
(process.name == "dd" and process.args : ("skip*", "seek*")) | ||
) | ||
''' | ||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
|
||
[[rule.threat.technique]] | ||
id = "T1057" | ||
name = "Process Discovery" | ||
reference = "https://attack.mitre.org/techniques/T1057/" | ||
|
||
[rule.threat.tactic] | ||
id = "TA0007" | ||
name = "Discovery" | ||
reference = "https://attack.mitre.org/tactics/TA0007/" |
54 changes: 54 additions & 0 deletions
54
rules_building_block/discovery_suspicious_memory_grep_activity.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
[metadata] | ||
bypass_bbr_timing = true | ||
creation_date = "2024/02/05" | ||
integration = ["endpoint"] | ||
maturity = "production" | ||
min_stack_comments = "New fields added: required_fields, related_integrations, setup" | ||
min_stack_version = "8.3.0" | ||
updated_date = "2024/02/05" | ||
|
||
[rule] | ||
author = ["Elastic"] | ||
building_block_type = "default" | ||
description = """ | ||
Monitors for grep activity related to memory mapping. The /proc/*/maps file in Linux provides a memory map for a | ||
specific process, detailing the memory segments, permissions, and what files are mapped to these segments. Attackers may | ||
read a process's memory map to identify memory addresses for code injection or process hijacking. | ||
""" | ||
from = "now-9m" | ||
index = ["logs-endpoint.events.*", "endgame-*"] | ||
language = "eql" | ||
license = "Elastic License v2" | ||
name = "Suspicious Memory grep Activity" | ||
references = ["https://github.com/arget13/DDexec"] | ||
risk_score = 21 | ||
rule_id = "d74d6506-427a-4790-b170-0c2a6ddac799" | ||
severity = "low" | ||
tags = [ | ||
"Domain: Endpoint", | ||
"OS: Linux", | ||
"Use Case: Threat Detection", | ||
"Tactic: Discovery", | ||
"Rule Type: BBR", | ||
"Data Source: Elastic Defend", | ||
"Data Source: Elastic Endgame" | ||
] | ||
timestamp_override = "event.ingested" | ||
type = "eql" | ||
query = ''' | ||
process where host.os.type == "linux" and event.action in ("exec", "exec_event") and event.type == "start" and | ||
process.name in ("grep", "egrep", "fgrep", "rgrep") and process.args in ("[stack]", "[vdso]", "[heap]") | ||
''' | ||
|
||
[[rule.threat]] | ||
framework = "MITRE ATT&CK" | ||
|
||
[[rule.threat.technique]] | ||
id = "T1057" | ||
name = "Process Discovery" | ||
reference = "https://attack.mitre.org/techniques/T1057/" | ||
|
||
[rule.threat.tactic] | ||
id = "TA0007" | ||
name = "Discovery" | ||
reference = "https://attack.mitre.org/tactics/TA0007/" |