System V Init Script Created
Files that are placed in the /etc/init.d/ directory in Unix can be used to start custom applications, services, scripts or commands during start-up. Init.d has been mostly replaced in favor of Systemd. However, the "systemd-sysv-generator" can convert init.d files to service unit files that run at boot. Adversaries may add or alter files located in the /etc/init.d/ directory to execute malicious code upon boot in order to gain persistence on the system.
Elastic rule (View on GitHub)
1[metadata]
2creation_date = "2023/03/21"
3integration = ["endpoint", "sentinel_one_cloud_funnel"]
4maturity = "production"
5min_stack_version = "8.13.0"
6min_stack_comments = "Breaking change at 8.13.0 for SentinelOne Integration."
7updated_date = "2025/01/06"
8
9[transform]
10[[transform.osquery]]
11label = "Osquery - Retrieve File Information"
12query = "SELECT * FROM file WHERE path = {{file.path}}"
13
14[[transform.osquery]]
15label = "Osquery - Retrieve File Listing Information"
16query = "SELECT * FROM file WHERE path LIKE '/etc/init.d/%'"
17
18[[transform.osquery]]
19label = "Osquery - Retrieve Additional File Listing Information"
20query = """
21SELECT f.path, u.username AS file_owner, g.groupname AS group_owner, datetime(f.atime, 'unixepoch') AS
22file_last_access_time, datetime(f.mtime, 'unixepoch') AS file_last_modified_time, datetime(f.ctime, 'unixepoch') AS
23file_last_status_change_time, datetime(f.btime, 'unixepoch') AS file_created_time, f.size AS size_bytes FROM file f LEFT
24JOIN users u ON f.uid = u.uid LEFT JOIN groups g ON f.gid = g.gid WHERE path LIKE '/etc/init.d/%'
25"""
26
27[[transform.osquery]]
28label = "Osquery - Retrieve Running Processes by User"
29query = "SELECT pid, username, name FROM processes p JOIN users u ON u.uid = p.uid ORDER BY username"
30
31[[transform.osquery]]
32label = "Osquery - Retrieve Crontab Information"
33query = "SELECT * FROM crontab"
34
35
36[rule]
37author = ["Elastic"]
38description = """
39Files that are placed in the /etc/init.d/ directory in Unix can be used to start custom applications, services, scripts
40or commands during start-up. Init.d has been mostly replaced in favor of Systemd. However, the "systemd-sysv-generator"
41can convert init.d files to service unit files that run at boot. Adversaries may add or alter files located in the
42/etc/init.d/ directory to execute malicious code upon boot in order to gain persistence on the system.
43"""
44from = "now-9m"
45index = ["logs-endpoint.events.*", "endgame-*", "logs-sentinel_one_cloud_funnel.*"]
46language = "eql"
47license = "Elastic License v2"
48name = "System V Init Script Created"
49note = """## Triage and analysis
50
51### Investigating System V Init Script Created
52
53The `/etc/init.d` directory is used in Linux systems to store the initialization scripts for various services and daemons that are executed during system startup and shutdown.
54
55Attackers can abuse files within the `/etc/init.d/` directory to run scripts, commands or malicious software every time a system is rebooted by converting an executable file into a service file through the `systemd-sysv-generator`. After conversion, a unit file is created within the `/run/systemd/generator.late/` directory.
56
57This rule looks for the creation of new files within the `/etc/init.d/` directory. Executable files in these directories will automatically run at boot with root privileges.
58
59> **Note**:
60> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/master/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
61> This investigation guide uses [placeholder fields](https://www.elastic.co/guide/en/security/current/osquery-placeholder-fields.html) to dynamically pass alert data into Osquery queries. Placeholder fields were introduced in Elastic Stack version 8.7.0. If you're using Elastic Stack version 8.6.0 or earlier, you'll need to manually adjust this investigation guide's queries to ensure they properly run.
62#### Possible Investigation Steps
63
64- Investigate the file that was created or modified.
65 - $osquery_0
66- Investigate whether any other files in the `/etc/init.d/` or `/run/systemd/generator.late/` directories have been altered.
67 - $osquery_1
68 - $osquery_2
69- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence and whether they are located in expected locations.
70 - $osquery_3
71- Investigate syslog through the `sudo cat /var/log/syslog | grep 'LSB'` command to find traces of the LSB header of the script (if present). If syslog is being ingested into Elasticsearch, the same can be accomplished through Kibana.
72- Investigate other alerts associated with the user/host during the past 48 hours.
73- Validate whether this activity is related to planned patches, updates, network administrator activity, or legitimate software installations.
74- Investigate whether the altered scripts call other malicious scripts elsewhere on the file system.
75 - If scripts or executables were dropped, retrieve the files and determine if they are malicious:
76 - Use a private sandboxed malware analysis system to perform analysis.
77 - Observe and collect information about the following activities:
78 - Attempts to contact external domains and addresses.
79 - Check if the domain is newly registered or unexpected.
80 - Check the reputation of the domain or IP address.
81 - File access, modification, and creation activities.
82 - Cron jobs, services and other persistence mechanisms.
83 - $osquery_4
84
85### False Positive Analysis
86
87- If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
88- If this activity is related to a system administrator who uses init.d for administrative purposes, consider adding exceptions for this specific administrator user account.
89- Try to understand the context of the execution by thinking about the user, machine, or business purpose. A small number of endpoints, such as servers with unique software, might appear unusual but satisfy a specific business need.
90
91### Related Rules
92
93- Suspicious File Creation in /etc for Persistence - 1c84dd64-7e6c-4bad-ac73-a5014ee37042
94
95### Response and remediation
96
97- Initiate the incident response process based on the outcome of the triage.
98- Isolate the involved host to prevent further post-compromise behavior.
99- If the triage identified malware, search the environment for additional compromised hosts.
100 - Implement temporary network rules, procedures, and segmentation to contain the malware.
101 - Stop suspicious processes.
102 - Immediately block the identified indicators of compromise (IoCs).
103 - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
104- Remove and block malicious artifacts identified during triage.
105- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
106- Delete the maliciously created service/init.d files or restore it to the original configuration.
107- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
108- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
109- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
110"""
111references = [
112 "https://www.intezer.com/blog/malware-analysis/hiddenwasp-malware-targeting-linux-systems/",
113 "https://pberba.github.io/security/2022/02/06/linux-threat-hunting-for-persistence-initialization-scripts-and-shell-configuration/#8-boot-or-logon-initialization-scripts-rc-scripts",
114 "https://www.cyberciti.biz/faq/how-to-enable-rc-local-shell-script-on-systemd-while-booting-linux-system/",
115 "https://www.elastic.co/security-labs/sequel-on-persistence-mechanisms",
116]
117risk_score = 21
118rule_id = "474fd20e-14cc-49c5-8160-d9ab4ba16c8b"
119setup = """## Setup
120
121This rule requires data coming in from Elastic Defend.
122
123### Elastic Defend Integration Setup
124Elastic 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.
125
126#### Prerequisite Requirements:
127- Fleet is required for Elastic Defend.
128- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
129
130#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
131- Go to the Kibana home page and click "Add integrations".
132- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
133- Click "Add Elastic Defend".
134- Configure the integration name and optionally add a description.
135- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
136- 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).
137- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
138- 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.
139For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
140- Click "Save and Continue".
141- 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.
142For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
143"""
144severity = "low"
145tags = [
146 "Domain: Endpoint",
147 "OS: Linux",
148 "Use Case: Threat Detection",
149 "Tactic: Persistence",
150 "Data Source: Elastic Endgame",
151 "Resources: Investigation Guide",
152 "Data Source: Elastic Defend",
153 "Data Source: SentinelOne",
154]
155timestamp_override = "event.ingested"
156type = "eql"
157
158query = '''
159file where host.os.type == "linux" and event.action in ("creation", "file_create_event", "rename", "file_rename_event")
160and file.path : "/etc/init.d/*" and not (
161 process.executable in (
162 "/bin/dpkg", "/usr/bin/dpkg", "/bin/dockerd", "/usr/bin/dockerd", "/usr/sbin/dockerd", "/bin/microdnf",
163 "/usr/bin/microdnf", "/bin/rpm", "/usr/bin/rpm", "/bin/snapd", "/usr/bin/snapd", "/bin/yum", "/usr/bin/yum",
164 "/bin/dnf", "/usr/bin/dnf", "/bin/podman", "/usr/bin/podman", "/bin/dnf-automatic", "/usr/bin/dnf-automatic",
165 "/bin/pacman", "/usr/bin/pacman", "/usr/bin/dpkg-divert", "/bin/dpkg-divert", "/sbin/apk", "/usr/sbin/apk",
166 "/usr/local/sbin/apk", "/usr/bin/apt", "/usr/sbin/pacman", "/bin/podman", "/usr/bin/podman", "/usr/bin/puppet",
167 "/bin/puppet", "/opt/puppetlabs/puppet/bin/puppet", "/usr/bin/chef-client", "/bin/chef-client",
168 "/bin/autossl_check", "/usr/bin/autossl_check", "/proc/self/exe", "/dev/fd/*", "/usr/bin/pamac-daemon",
169 "/bin/pamac-daemon", "/usr/lib/snapd/snapd", "/usr/local/bin/dockerd"
170 ) or
171 file.extension in ("swp", "swpx", "swx", "dpkg-remove") or
172 file.path like ("/etc/init.d/*beat*", "/etc/init.d/elastic-agent*") or
173 process.executable like ("/nix/store/*", "/var/lib/dpkg/*", "/snap/*", "/dev/fd/*", "/usr/lib/virtualbox/*") or
174 process.name in ("docker-init", "jumpcloud-agent", "crio") or
175 process.executable == null or
176 (process.name == "ln" and file.path : "/etc/init.d/rc*.d/*") or
177 (process.name == "sed" and file.name : "sed*") or
178 (process.name == "perl" and file.name : "e2scrub_all.tmp*")
179)
180'''
181
182[[rule.threat]]
183framework = "MITRE ATT&CK"
184
185[[rule.threat.technique]]
186id = "T1037"
187name = "Boot or Logon Initialization Scripts"
188reference = "https://attack.mitre.org/techniques/T1037/"
189
190[rule.threat.tactic]
191id = "TA0003"
192name = "Persistence"
193reference = "https://attack.mitre.org/tactics/TA0003/"
Triage and analysis
Investigating System V Init Script Created
The /etc/init.d
directory is used in Linux systems to store the initialization scripts for various services and daemons that are executed during system startup and shutdown.
Attackers can abuse files within the /etc/init.d/
directory to run scripts, commands or malicious software every time a system is rebooted by converting an executable file into a service file through the systemd-sysv-generator
. After conversion, a unit file is created within the /run/systemd/generator.late/
directory.
This rule looks for the creation of new files within the /etc/init.d/
directory. Executable files in these directories will automatically run at boot with root privileges.
Note: This investigation guide uses the Osquery Markdown Plugin introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide. This investigation guide uses placeholder fields to dynamically pass alert data into Osquery queries. Placeholder fields were introduced in Elastic Stack version 8.7.0. If you're using Elastic Stack version 8.6.0 or earlier, you'll need to manually adjust this investigation guide's queries to ensure they properly run.
Possible Investigation Steps
- Investigate the file that was created or modified.
- $osquery_0
- Investigate whether any other files in the
/etc/init.d/
or/run/systemd/generator.late/
directories have been altered.- $osquery_1
- $osquery_2
- Investigate the script execution chain (parent process tree) for unknown processes. Examine their executable files for prevalence and whether they are located in expected locations.
- $osquery_3
- Investigate syslog through the
sudo cat /var/log/syslog | grep 'LSB'
command to find traces of the LSB header of the script (if present). If syslog is being ingested into Elasticsearch, the same can be accomplished through Kibana. - Investigate other alerts associated with the user/host during the past 48 hours.
- Validate whether this activity is related to planned patches, updates, network administrator activity, or legitimate software installations.
- Investigate whether the altered scripts call other malicious scripts elsewhere on the file system.
- If scripts or executables were dropped, retrieve the files and determine if they are malicious:
- Use a private sandboxed malware analysis system to perform analysis.
- Observe and collect information about the following activities:
- Attempts to contact external domains and addresses.
- Check if the domain is newly registered or unexpected.
- Check the reputation of the domain or IP address.
- File access, modification, and creation activities.
- Cron jobs, services and other persistence mechanisms.
- $osquery_4
- Attempts to contact external domains and addresses.
- Observe and collect information about the following activities:
- Use a private sandboxed malware analysis system to perform analysis.
- If scripts or executables were dropped, retrieve the files and determine if they are malicious:
False Positive Analysis
- If this activity is related to new benign software installation activity, consider adding exceptions — preferably with a combination of user and command line conditions.
- If this activity is related to a system administrator who uses init.d for administrative purposes, consider adding exceptions for this specific administrator user account.
- Try to understand the context of the execution by thinking about the user, machine, or business purpose. A small number of endpoints, such as servers with unique software, might appear unusual but satisfy a specific business need.
Related Rules
- Suspicious File Creation in /etc for Persistence - 1c84dd64-7e6c-4bad-ac73-a5014ee37042
Response and remediation
- Initiate the incident response process based on the outcome of the triage.
- Isolate the involved host to prevent further post-compromise behavior.
- If the triage identified malware, search the environment for additional compromised hosts.
- Implement temporary network rules, procedures, and segmentation to contain the malware.
- Stop suspicious processes.
- Immediately block the identified indicators of compromise (IoCs).
- Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
- Remove and block malicious artifacts identified during triage.
- Investigate credential exposure on systems compromised or used by the attacker to ensure all compromised accounts are identified. Reset passwords for these accounts and other potentially compromised credentials, such as email, business systems, and web services.
- Delete the maliciously created service/init.d files or restore it to the original configuration.
- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
References
Related rules
- Adding Hidden File Attribute via Attrib
- Execution via MSSQL xp_cmdshell Stored Procedure
- System Shells via Services
- User Account Creation
- Web Shell Detection: Script Process Child of Common Web Processes