Suspicious APT Package Manager Execution
Detects suspicious process events executed by the APT package manager, potentially indicating persistence through an APT backdoor. In Linux, APT (Advanced Package Tool) is a command-line utility used for handling packages on Debian-based systems, providing functions for installing, updating, upgrading, and removing software along with managing package repositories. Attackers can backdoor APT to gain persistence by injecting malicious code into scripts that APT runs, thereby ensuring continued unauthorized access or control each time APT is used for package management.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/02/01"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2024/09/23"
6
7[rule]
8author = ["Elastic"]
9description = """
10Detects suspicious process events executed by the APT package manager, potentially indicating persistence through an APT
11backdoor. In Linux, APT (Advanced Package Tool) is a command-line utility used for handling packages on Debian-based
12systems, providing functions for installing, updating, upgrading, and removing software along with managing package
13repositories. Attackers can backdoor APT to gain persistence by injecting malicious code into scripts that APT runs,
14thereby ensuring continued unauthorized access or control each time APT is used for package management.
15"""
16from = "now-9m"
17index = ["logs-endpoint.events.*"]
18language = "eql"
19license = "Elastic License v2"
20name = "Suspicious APT Package Manager Execution"
21references = ["https://www.elastic.co/security-labs/sequel-on-persistence-mechanisms"]
22risk_score = 47
23rule_id = "ad959eeb-2b7b-4722-ba08-a45f6622f005"
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: Persistence",
56 "Tactic: Execution",
57 "Tactic: Defense Evasion",
58 "Data Source: Elastic Defend",
59]
60type = "eql"
61
62query = '''
63sequence by host.id with maxspan=5s
64 [process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and
65 process.parent.name == "apt" and process.args == "-c" and process.name in (
66 "bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish"
67 )
68 ] by process.entity_id
69 [process where host.os.type == "linux" and event.type == "start" and event.action == "exec" and process.name : (
70 "bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish", "python*", "php*",
71 "perl", "ruby", "lua*", "openssl", "nc", "netcat", "ncat", "telnet", "awk"
72 )
73 ] by process.parent.entity_id
74'''
75
76
77[[rule.threat]]
78framework = "MITRE ATT&CK"
79[[rule.threat.technique]]
80id = "T1543"
81name = "Create or Modify System Process"
82reference = "https://attack.mitre.org/techniques/T1543/"
83
84[[rule.threat.technique]]
85id = "T1546"
86name = "Event Triggered Execution"
87reference = "https://attack.mitre.org/techniques/T1546/"
88[[rule.threat.technique.subtechnique]]
89id = "T1546.016"
90name = "Installer Packages"
91reference = "https://attack.mitre.org/techniques/T1546/016/"
92
93
94[[rule.threat.technique]]
95id = "T1574"
96name = "Hijack Execution Flow"
97reference = "https://attack.mitre.org/techniques/T1574/"
98
99
100[rule.threat.tactic]
101id = "TA0003"
102name = "Persistence"
103reference = "https://attack.mitre.org/tactics/TA0003/"
104[[rule.threat]]
105framework = "MITRE ATT&CK"
106[[rule.threat.technique]]
107id = "T1059"
108name = "Command and Scripting Interpreter"
109reference = "https://attack.mitre.org/techniques/T1059/"
110[[rule.threat.technique.subtechnique]]
111id = "T1059.004"
112name = "Unix Shell"
113reference = "https://attack.mitre.org/techniques/T1059/004/"
114
115
116
117[rule.threat.tactic]
118id = "TA0002"
119name = "Execution"
120reference = "https://attack.mitre.org/tactics/TA0002/"
121[[rule.threat]]
122framework = "MITRE ATT&CK"
123
124[rule.threat.tactic]
125id = "TA0005"
126name = "Defense Evasion"
127reference = "https://attack.mitre.org/tactics/TA0005/"
References
Related rules
- Git Hook Child Process
- Git Hook Command Execution
- Git Hook Egress Network Connection
- At Job Created or Modified
- DNF Package Manager Plugin File Creation