Skip to content

Commit f89e245

Browse files
[New Rule] Potential Data Splitting Detected (#4235)
Co-authored-by: shashank-elastic <[email protected]>
1 parent 3e26828 commit f89e245

File tree

1 file changed

+79
-0
lines changed

1 file changed

+79
-0
lines changed
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
[metadata]
2+
creation_date = "2024/11/04"
3+
integration = ["endpoint"]
4+
maturity = "production"
5+
updated_date = "2024/11/04"
6+
7+
[rule]
8+
author = ["Elastic"]
9+
description = """
10+
This rule looks for the usage of common data splitting utilities with specific arguments that indicate data splitting
11+
for exfiltration on Linux systems. Data splitting is a technique used by adversaries to split data into smaller parts to
12+
avoid detection and exfiltrate data.
13+
"""
14+
from = "now-9m"
15+
index = ["logs-endpoint.events.*"]
16+
language = "eql"
17+
license = "Elastic License v2"
18+
name = "Potential Data Splitting Detected"
19+
risk_score = 21
20+
rule_id = "e302e6c3-448c-4243-8d9b-d41da70db582"
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: Exfiltration",
52+
"Data Source: Elastic Defend"
53+
]
54+
timestamp_override = "event.ingested"
55+
type = "eql"
56+
query = '''
57+
process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and (
58+
(process.name == "dd" and process.args like "bs=*" and process.args like "if=*") or
59+
(process.name in ("split", "rsplit") and (
60+
(process.args == "-b" or process.args like "--bytes*") or
61+
(process.args == "-C" or process.args like "--line-bytes*")
62+
)
63+
)
64+
) and not (
65+
process.parent.name in ("apport", "overlayroot") or
66+
process.args like (
67+
"if=/tmp/nvim*", "if=/boot/*", "if=/dev/random", "if=/dev/urandom", "/dev/mapper/*",
68+
"if=*.iso", "of=/dev/stdout", "if=/dev/zero", "if=/dev/sda", "/proc/sys/kernel/*"
69+
)
70+
)
71+
'''
72+
73+
[[rule.threat]]
74+
framework = "MITRE ATT&CK"
75+
76+
[rule.threat.tactic]
77+
name = "Exfiltration"
78+
id = "TA0010"
79+
reference = "https://attack.mitre.org/tactics/TA0010/"

0 commit comments

Comments
 (0)