Privilege Escalation via GDB CAP_SYS_PTRACE

Identifies instances where GDB (granted the CAP_SYS_PTRACE capability) is executed, after which the user's access is elevated to UID/GID 0 (root). In Linux, the CAP_SYS_PTRACE capability grants a process the ability to use the ptrace system call, which is typically used for debugging and allows the process to trace and control other processes. Attackers may leverage this capability to hook and inject into a process that is running with root permissions in order to escalate their privileges to root.

Elastic rule (View on GitHub)

 1[metadata]
 2creation_date = "2024/01/09"
 3integration = ["endpoint"]
 4maturity = "production"
 5updated_date = "2024/11/07"
 6
 7[rule]
 8author = ["Elastic"]
 9description = """
10Identifies instances where GDB (granted the CAP_SYS_PTRACE capability) is executed, after which the user's access is
11elevated to UID/GID 0 (root). In Linux, the CAP_SYS_PTRACE capability grants a process the ability to use the ptrace
12system call, which is typically used for debugging and allows the process to trace and control other processes.
13Attackers may leverage this capability to hook and inject into a process that is running with root permissions in order
14to escalate their privileges to root.
15"""
16from = "now-9m"
17index = ["logs-endpoint.events.*"]
18language = "eql"
19license = "Elastic License v2"
20name = "Privilege Escalation via GDB CAP_SYS_PTRACE"
21risk_score = 47
22rule_id = "c296f888-eac6-4543-8da5-b6abb0d3304f"
23setup = """## Setup
24
25
26This rule requires data coming in from Elastic Defend.
27
28### Elastic Defend Integration Setup
29Elastic 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.
30
31#### Prerequisite Requirements:
32- Fleet is required for Elastic Defend.
33- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
34
35#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
36- Go to the Kibana home page and click "Add integrations".
37- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
38- Click "Add Elastic Defend".
39- Configure the integration name and optionally add a description.
40- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
41- 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).
42- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
43- 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.
44For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
45- Click "Save and Continue".
46- 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.
47For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
48"""
49severity = "medium"
50tags = [
51    "Domain: Endpoint",
52    "OS: Linux",
53    "Use Case: Threat Detection",
54    "Tactic: Privilege Escalation",
55    "Data Source: Elastic Defend",
56]
57type = "eql"
58
59query = '''
60sequence by host.id, process.entry_leader.entity_id with maxspan=1m
61  [process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and process.name == "gdb" and
62   (process.thread.capabilities.effective : "CAP_SYS_PTRACE" or process.thread.capabilities.permitted : "CAP_SYS_PTRACE") and 
63   user.id != "0"]
64  [process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and
65   process.name != null and user.id == "0"]
66'''
67
68
69[[rule.threat]]
70framework = "MITRE ATT&CK"
71[[rule.threat.technique]]
72id = "T1055"
73name = "Process Injection"
74reference = "https://attack.mitre.org/techniques/T1055/"
75[[rule.threat.technique.subtechnique]]
76id = "T1055.008"
77name = "Ptrace System Calls"
78reference = "https://attack.mitre.org/techniques/T1055/008/"
79
80
81[[rule.threat.technique]]
82id = "T1068"
83name = "Exploitation for Privilege Escalation"
84reference = "https://attack.mitre.org/techniques/T1068/"
85
86
87[rule.threat.tactic]
88id = "TA0004"
89name = "Privilege Escalation"
90reference = "https://attack.mitre.org/tactics/TA0004/"

Related rules

to-top