Skip to content

Commit 83f31e1

Browse files
[New Rule] Directory Creation in /bin directory (#4227)
* [New Rule] Directory Creation in /bin directory * Description fix * Update rules/linux/defense_evasion_directory_creation_in_bin.toml Co-authored-by: shashank-elastic <[email protected]> --------- Co-authored-by: shashank-elastic <[email protected]>
1 parent 6040b6a commit 83f31e1

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
[metadata]
2+
creation_date = "2024/11/01"
3+
integration = ["endpoint"]
4+
maturity = "production"
5+
updated_date = "2024/11/01"
6+
7+
[rule]
8+
author = ["Elastic"]
9+
description = """
10+
This rule identifies the creation of directories in the /bin directory. The /bin directory contains essential binary
11+
files that are required for the system to function properly. The creation of directories in this location could be an
12+
attempt to hide malicious files or executables, as these /bin directories usually just contain binaries.
13+
"""
14+
from = "now-9m"
15+
index = ["logs-endpoint.events.*"]
16+
language = "eql"
17+
license = "Elastic License v2"
18+
name = "Directory Creation in /bin directory"
19+
risk_score = 21
20+
rule_id = "3302835b-0049-4004-a325-660b1fba1f67"
21+
setup = """## Setup
22+
23+
This rule requires data coming in from Elastic Defend.
24+
25+
### Elastic Defend Integration Setup
26+
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.
27+
28+
#### Prerequisite Requirements:
29+
- Fleet is required for Elastic Defend.
30+
- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
31+
32+
#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
33+
- Go to the Kibana home page and click "Add integrations".
34+
- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
35+
- Click "Add Elastic Defend".
36+
- Configure the integration name and optionally add a description.
37+
- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
38+
- 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).
39+
- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
40+
- 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.
41+
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).
42+
- Click "Save and Continue".
43+
- 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.
44+
For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
45+
"""
46+
severity = "low"
47+
tags = [
48+
"Domain: Endpoint",
49+
"OS: Linux",
50+
"Use Case: Threat Detection",
51+
"Tactic: Defense Evasion",
52+
"Tactic: Persistence",
53+
"Data Source: Elastic Defend",
54+
]
55+
timestamp_override = "event.ingested"
56+
type = "eql"
57+
query = '''
58+
process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and process.name == "mkdir" and
59+
process.args like ("/bin/*", "/usr/bin/*", "/usr/local/bin/*", "/sbin/*", "/usr/sbin/*", "/usr/local/sbin/*") and
60+
not process.args in ("/bin/mkdir", "/usr/bin/mkdir", "/usr/local/bin/mkdir")
61+
'''
62+
63+
[[rule.threat]]
64+
framework = "MITRE ATT&CK"
65+
66+
[[rule.threat.technique]]
67+
id = "T1564"
68+
name = "Hide Artifacts"
69+
reference = "https://attack.mitre.org/techniques/T1564/"
70+
71+
[[rule.threat.technique.subtechnique]]
72+
id = "T1564.001"
73+
name = "Hidden Files and Directories"
74+
reference = "https://attack.mitre.org/techniques/T1564/001/"
75+
76+
[rule.threat.tactic]
77+
id = "TA0005"
78+
name = "Defense Evasion"
79+
reference = "https://attack.mitre.org/tactics/TA0005/"
80+
81+
[[rule.threat]]
82+
framework = "MITRE ATT&CK"
83+
84+
[rule.threat.tactic]
85+
id = "TA0003"
86+
name = "Persistence"
87+
reference = "https://attack.mitre.org/tactics/TA0003/"

0 commit comments

Comments
 (0)