Potential Privilege Escalation via Linux DAC permissions

Identifies potential privilege escalation exploitation of DAC (Discretionary access control) file permissions. The rule identifies exploitation of DAC checks on sensitive file paths via suspicious processes whose capabilities include CAP_DAC_OVERRIDE (where a process can bypass all read write and execution checks) or CAP_DAC_READ_SEARCH (where a process can read any file or perform any executable permission on the directories).

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2024/01/08"
 3integration = ["endpoint"]
 4maturity = "production"
 5min_stack_comments = "Linux effective and permitted process capability data sources were added in version 8.11.0"
 6min_stack_version = "8.11.0"
 7updated_date = "2024/02/21"
 8
 9[rule]
10author = ["Elastic"]
11description = """
12Identifies potential privilege escalation exploitation of DAC (Discretionary access control) file permissions. The rule
13identifies exploitation of DAC checks on sensitive file paths via suspicious processes whose capabilities
14include CAP_DAC_OVERRIDE (where a process can bypass all read write and execution checks) or
15CAP_DAC_READ_SEARCH (where a process can read any file or perform any executable permission on the directories).
16"""
17from = "now-9m"
18index = ["logs-endpoint.events.*"]
19language = "kuery"
20license = "Elastic License v2"
21name = "Potential Privilege Escalation via Linux DAC permissions"
22risk_score = 47
23rule_id = "f7c70f2e-4616-439c-85ac-5b98415042fe"
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 = "medium"
51tags = [
52        "Domain: Endpoint",
53        "OS: Linux",
54        "Use Case: Threat Detection",
55        "Tactic: Privilege Escalation",
56        "Data Source: Elastic Defend"
57        ]
58timestamp_override = "event.ingested"
59type = "new_terms"
60query = '''
61event.category:process and host.os.type:linux and event.type:start and event.action:exec and
62(process.thread.capabilities.permitted:CAP_DAC_* or process.thread.capabilities.effective: CAP_DAC_*) and
63process.command_line:(*sudoers* or *passwd* or *shadow* or */root/*) and not user.id:"0"
64'''
65
66[[rule.threat]]
67framework = "MITRE ATT&CK"
68
69[[rule.threat.technique]]
70id = "T1068"
71name = "Exploitation for Privilege Escalation"
72reference = "https://attack.mitre.org/techniques/T1068/"
73
74[rule.threat.tactic]
75id = "TA0004"
76name = "Privilege Escalation"
77reference = "https://attack.mitre.org/tactics/TA0004/"
78
79[rule.new_terms]
80field = "new_terms_fields"
81value = ["host.id", "process.command_line", "process.executable"]
82
83[[rule.new_terms.history_window_start]]
84field = "history_window_start"
85value = "now-10d"

Related rules

to-top