DPKG Package Installed by Unusual Parent Process
This rule detects the installation of a Debian package (dpkg) by an unusual parent process. The dpkg command is used to install, remove, and manage Debian packages on a Linux system. Attackers can abuse the dpkg command to install malicious packages on a system.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2024/07/09"
3integration = ["endpoint"]
4maturity = "production"
5updated_date = "2024/11/07"
6
7[rule]
8author = ["Elastic"]
9description = """
10This rule detects the installation of a Debian package (dpkg) by an unusual parent process. The dpkg command is used to
11install, remove, and manage Debian packages on a Linux system. Attackers can abuse the dpkg command to install malicious
12packages on a system.
13"""
14from = "now-9m"
15index = ["logs-endpoint.events.*"]
16language = "kuery"
17license = "Elastic License v2"
18name = "DPKG Package Installed by Unusual Parent Process"
19references = ["https://www.makeuseof.com/how-deb-packages-are-backdoored-how-to-detect-it/"]
20risk_score = 21
21rule_id = "f4d1c0ac-aedb-4063-9fa6-cc651eb5e6ee"
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 = "low"
48tags = [
49 "Domain: Endpoint",
50 "OS: Linux",
51 "Use Case: Threat Detection",
52 "Tactic: Persistence",
53 "Data Source: Elastic Defend",
54]
55timestamp_override = "event.ingested"
56type = "new_terms"
57
58query = '''
59host.os.type:linux and event.category:process and event.type:start and event.action:exec and process.name:dpkg and
60process.args:("-i" or "--install")
61'''
62
63
64[[rule.threat]]
65framework = "MITRE ATT&CK"
66[[rule.threat.technique]]
67id = "T1543"
68name = "Create or Modify System Process"
69reference = "https://attack.mitre.org/techniques/T1543/"
70
71[[rule.threat.technique]]
72id = "T1546"
73name = "Event Triggered Execution"
74reference = "https://attack.mitre.org/techniques/T1546/"
75[[rule.threat.technique.subtechnique]]
76id = "T1546.016"
77name = "Installer Packages"
78reference = "https://attack.mitre.org/techniques/T1546/016/"
79
80
81[[rule.threat.technique]]
82id = "T1574"
83name = "Hijack Execution Flow"
84reference = "https://attack.mitre.org/techniques/T1574/"
85
86
87[rule.threat.tactic]
88id = "TA0003"
89name = "Persistence"
90reference = "https://attack.mitre.org/tactics/TA0003/"
91[[rule.threat]]
92framework = "MITRE ATT&CK"
93[[rule.threat.technique]]
94id = "T1195"
95name = "Supply Chain Compromise"
96reference = "https://attack.mitre.org/techniques/T1195/"
97[[rule.threat.technique.subtechnique]]
98id = "T1195.002"
99name = "Compromise Software Supply Chain"
100reference = "https://attack.mitre.org/techniques/T1195/002/"
101
102
103
104[rule.threat.tactic]
105id = "TA0001"
106name = "Initial Access"
107reference = "https://attack.mitre.org/tactics/TA0001/"
108
109[rule.new_terms]
110field = "new_terms_fields"
111value = ["process.parent.executable"]
112[[rule.new_terms.history_window_start]]
113field = "history_window_start"
114value = "now-7d"
References
Related rules
- RPM Package Installed by Unusual Parent Process
- Linux User Added to Privileged Group
- APT Package Manager Configuration File Creation
- Chkconfig Service Add
- Cron Job Created or Modified