Suspicious /proc/maps Discovery

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.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2024/01/29"
 3integration = ["endpoint"]
 4maturity = "production"
 5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
 6min_stack_version = "8.3.0"
 7updated_date = "2024/03/08"
 8
 9[rule]
10author = ["Elastic"]
11description = """
12Monitors for /proc/*/maps file reads. The /proc/*/maps file in Linux provides a memory map for a specific process,
13detailing the memory segments, permissions, and what files are mapped to these segments. Attackers may read a process's
14memory map to identify memory addresses for code injection or process hijacking.
15"""
16from = "now-9m"
17index = ["logs-endpoint.events.*"]
18language = "eql"
19license = "Elastic License v2"
20name = "Suspicious /proc/maps Discovery"
21references = ["https://github.com/arget13/DDexec"]
22risk_score = 21
23rule_id = "2f95540c-923e-4f57-9dae-de30169c68b9"
24setup = """## Setup
25
26
27This rule requires data coming in from Elastic Defend.
28
29### Elastic Defend Integration Setup
30Elastic 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.
31
32#### Prerequisite Requirements:
33- Fleet is required for Elastic Defend.
34- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
35
36#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
37- Go to the Kibana home page and click "Add integrations".
38- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
39- Click "Add Elastic Defend".
40- Configure the integration name and optionally add a description.
41- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
42- 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).
43- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
44- 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.
45For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
46- Click "Save and Continue".
47- 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.
48For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
49"""
50severity = "low"
51tags = [
52        "Domain: Endpoint",
53        "OS: Linux",
54        "Use Case: Threat Detection",
55        "Tactic: Discovery",
56        "Data Source: Elastic Defend"
57        ]
58timestamp_override = "event.ingested"
59type = "eql"
60query = '''
61process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and
62process.name in ("cat", "grep") and process.args : "/proc/*/maps" and process.entry_leader.name in (
63  "bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish"
64)
65'''
66
67[[rule.threat]]
68framework = "MITRE ATT&CK"
69
70[[rule.threat.technique]]
71id = "T1057"
72name = "Process Discovery"
73reference = "https://attack.mitre.org/techniques/T1057/"
74
75[rule.threat.tactic]
76id = "TA0007"
77name = "Discovery"
78reference = "https://attack.mitre.org/tactics/TA0007/"

References

Related rules

to-top