Potential Shadow File Read via Command Line Utilities
Identifies access to the /etc/shadow file via the commandline using standard system utilities. After elevating privileges to root, threat actors may attempt to read or dump this file in order to gain valid credentials. They may utilize these to move laterally undetected and access additional resources.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2022/09/01"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2024/05/21"
6
7[rule]
8author = ["Elastic"]
9description = """
10Identifies access to the /etc/shadow file via the commandline using standard system utilities. After elevating
11privileges to root, threat actors may attempt to read or dump this file in order to gain valid credentials. They may
12utilize these to move laterally undetected and access additional resources.
13"""
14from = "now-9m"
15index = ["logs-endpoint.events.*", "endgame-*"]
16language = "kuery"
17license = "Elastic License v2"
18name = "Potential Shadow File Read via Command Line Utilities"
19references = ["https://www.cyberciti.biz/faq/unix-linux-password-cracking-john-the-ripper/"]
20risk_score = 47
21rule_id = "9a3a3689-8ed1-4cdb-83fb-9506db54c61f"
22setup = """## Setup
23
24This rule requires data coming in from Elastic Defend.
25
26### Elastic Defend Integration Setup
27Elastic 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.
28
29#### Prerequisite Requirements:
30- Fleet is required for Elastic Defend.
31- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
32
33#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
34- Go to the Kibana home page and click "Add integrations".
35- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
36- Click "Add Elastic Defend".
37- Configure the integration name and optionally add a description.
38- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
39- 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).
40- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
41- 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.
42For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
43- Click "Save and Continue".
44- 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.
45For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
46"""
47severity = "medium"
48tags = [
49 "Domain: Endpoint",
50 "OS: Linux",
51 "Use Case: Threat Detection",
52 "Tactic: Privilege Escalation",
53 "Tactic: Credential Access",
54 "Data Source: Elastic Endgame",
55 "Data Source: Elastic Defend",
56]
57timestamp_override = "event.ingested"
58type = "new_terms"
59
60query = '''
61host.os.type : "linux" and event.category : "process" and event.action : ("exec" or "exec_event") and
62(process.args : "/etc/shadow" or (process.working_directory: "/etc" and process.args: "shadow")) and not
63(process.executable : ("/bin/chown" or "/usr/bin/chown") and process.args : "root:shadow") and not
64(process.executable : ("/bin/chmod" or "/usr/bin/chmod") and process.args : "640")
65'''
66
67
68[[rule.threat]]
69framework = "MITRE ATT&CK"
70[[rule.threat.technique]]
71id = "T1068"
72name = "Exploitation for Privilege Escalation"
73reference = "https://attack.mitre.org/techniques/T1068/"
74
75
76[rule.threat.tactic]
77id = "TA0004"
78name = "Privilege Escalation"
79reference = "https://attack.mitre.org/tactics/TA0004/"
80[[rule.threat]]
81framework = "MITRE ATT&CK"
82[[rule.threat.technique]]
83id = "T1003"
84name = "OS Credential Dumping"
85reference = "https://attack.mitre.org/techniques/T1003/"
86[[rule.threat.technique.subtechnique]]
87id = "T1003.008"
88name = "/etc/passwd and /etc/shadow"
89reference = "https://attack.mitre.org/techniques/T1003/008/"
90
91
92
93[rule.threat.tactic]
94id = "TA0006"
95name = "Credential Access"
96reference = "https://attack.mitre.org/tactics/TA0006/"
97
98[rule.new_terms]
99field = "new_terms_fields"
100value = ["process.command_line", "host.id", "process.executable"]
101[[rule.new_terms.history_window_start]]
102field = "history_window_start"
103value = "now-10d"
References
Related rules
- Potential Unauthorized Access via Wildcard Injection Detected
- Kernel Load or Unload via Kexec Detected
- Linux Process Hooking via GDB
- Linux init (PID 1) Secret Dump via GDB
- Modification of Dynamic Linker Preload Shared Object