Process Spawned from Message-of-the-Day (MOTD)

Message of the day (MOTD) is the message that is presented to the user when a user connects to a Linux server via SSH or a serial connection. Linux systems contain several default MOTD files located in the "/etc/update-motd.d/" directory. These scripts run as the root user every time a user connects over SSH or a serial connection. Adversaries may create malicious MOTD files that grant them persistence onto the target every time a user connects to the system by executing a backdoor script or command. This rule detects the execution of potentially malicious processes through the MOTD utility.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2023/02/28"
  3integration = ["endpoint", "sentinel_one_cloud_funnel"]
  4maturity = "production"
  5updated_date = "2025/12/22"
  6
  7[transform]
  8[[transform.osquery]]
  9label = "Osquery - Retrieve File Information"
 10query = "SELECT * FROM file WHERE path = {{file.path}}"
 11
 12[[transform.osquery]]
 13label = "Osquery - Retrieve File Listing Information"
 14query = "SELECT * FROM file WHERE path LIKE '/etc/update-motd.d/%'"
 15
 16[[transform.osquery]]
 17label = "Osquery - Retrieve Additional File Listing Information"
 18query = """
 19SELECT f.path, u.username AS file_owner, g.groupname AS group_owner, datetime(f.atime, 'unixepoch') AS
 20file_last_access_time, datetime(f.mtime, 'unixepoch') AS file_last_modified_time, datetime(f.ctime, 'unixepoch') AS
 21file_last_status_change_time, datetime(f.btime, 'unixepoch') AS file_created_time, f.size AS size_bytes FROM file f LEFT
 22JOIN users u ON f.uid = u.uid LEFT JOIN groups g ON f.gid = g.gid WHERE path LIKE '/etc/update-motd.d/%'
 23"""
 24
 25[[transform.osquery]]
 26label = "Osquery - Retrieve Running Processes by User"
 27query = "SELECT pid, username, name FROM processes p JOIN users u ON u.uid = p.uid ORDER BY username"
 28
 29[[transform.osquery]]
 30label = "Osquery - Retrieve Crontab Information"
 31query = "SELECT * FROM crontab"
 32
 33[rule]
 34author = ["Elastic"]
 35description = """
 36Message of the day (MOTD) is the message that is presented to the user when a user connects to a Linux server via SSH or
 37a serial connection. Linux systems contain several default MOTD files located in the "/etc/update-motd.d/" directory.
 38These scripts run as the root user every time a user connects over SSH or a serial connection. Adversaries may create
 39malicious MOTD files that grant them persistence onto the target every time a user connects to the system by executing a
 40backdoor script or command. This rule detects the execution of potentially malicious processes through the MOTD utility.
 41"""
 42from = "now-9m"
 43index = ["logs-endpoint.events.process*", "endgame-*", "logs-sentinel_one_cloud_funnel.*"]
 44language = "eql"
 45license = "Elastic License v2"
 46name = "Process Spawned from Message-of-the-Day (MOTD)"
 47note = """## Triage and analysis
 48
 49### Investigating Process Spawned from Message-of-the-Day (MOTD)
 50
 51The message-of-the-day (MOTD) is used to display a customizable system-wide message or information to users upon login in Linux.
 52
 53Attackers can abuse message-of-the-day (motd) files to run scripts, commands or malicious software every time a user connects to a system over SSH or a serial connection, by creating a new file within the `/etc/update-motd.d/` directory. Files in these directories will automatically run with root privileges when they are made executable.
 54
 55This rule identifies the execution of potentially malicious processes from a MOTD script, which is not likely to occur as default benign behavior. 
 56
 57> **Note**:
 58> This investigation guide uses the [Osquery Markdown Plugin](https://www.elastic.co/guide/en/security/current/invest-guide-run-osquery.html) introduced in Elastic Stack version 8.5.0. Older Elastic Stack versions will display unrendered Markdown in this guide.
 59> 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.
 60
 61#### Possible Investigation Steps
 62
 63- Investigate the file that was created or modified from which the suspicious process was executed.
 64  - $osquery_0
 65- Investigate whether any other files in the `/etc/update-motd.d/` directory have been altered.
 66  - $osquery_1
 67  - $osquery_2
 68- 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.
 69  - $osquery_3
 70- Investigate other alerts associated with the user/host during the past 48 hours.
 71- Investigate whether the altered scripts call other malicious scripts elsewhere on the file system. 
 72  - If scripts or executables were dropped, retrieve the files and determine if they are malicious:
 73    - Use a private sandboxed malware analysis system to perform analysis.
 74      - Observe and collect information about the following activities:
 75        - Attempts to contact external domains and addresses.
 76          - Check if the domain is newly registered or unexpected.
 77          - Check the reputation of the domain or IP address.
 78        - File access, modification, and creation activities.
 79        - Cron jobs, services, and other persistence mechanisms.
 80            - $osquery_4
 81
 82### Related Rules
 83
 84- Message-of-the-Day (MOTD) File Creation - 96d11d31-9a79-480f-8401-da28b194608f
 85
 86### False positive analysis
 87
 88- This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.
 89
 90### Response and remediation
 91
 92- Initiate the incident response process based on the outcome of the triage.
 93- Isolate the involved host to prevent further post-compromise behavior.
 94- If the triage identified malware, search the environment for additional compromised hosts.
 95  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 96  - Stop suspicious processes.
 97  - Immediately block the identified indicators of compromise (IoCs).
 98  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 99- 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.
100- Delete the MOTD files or restore them to the original configuration.
101- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
102- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
103- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
104"""
105references = [
106    "https://pberba.github.io/security/2022/02/06/linux-threat-hunting-for-persistence-initialization-scripts-and-shell-configuration/#10-boot-or-logon-initialization-scripts-motd",
107]
108risk_score = 73
109rule_id = "4ec47004-b34a-42e6-8003-376a123ea447"
110setup = """## Setup
111
112This rule requires data coming in from Elastic Defend.
113
114### Elastic Defend Integration Setup
115Elastic 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.
116
117#### Prerequisite Requirements:
118- Fleet is required for Elastic Defend.
119- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
120
121#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
122- Go to the Kibana home page and click "Add integrations".
123- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
124- Click "Add Elastic Defend".
125- Configure the integration name and optionally add a description.
126- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
127- 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).
128- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
129- 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.
130For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
131- Click "Save and Continue".
132- 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.
133For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
134"""
135severity = "high"
136tags = [
137    "Domain: Endpoint",
138    "OS: Linux",
139    "Use Case: Threat Detection",
140    "Tactic: Persistence",
141    "Data Source: Elastic Endgame",
142    "Resources: Investigation Guide",
143    "Data Source: Elastic Defend",
144    "Data Source: SentinelOne",
145]
146timestamp_override = "event.ingested"
147type = "eql"
148query = '''
149process where event.type == "start" and host.os.type == "linux" and event.action in ("exec", "exec_event", "start") and
150process.parent.executable like "/etc/update-motd.d/*" and
151(
152  (
153    process.name in ("bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish") and
154    (
155      process.args : ("-i", "-l") or
156      (process.parent.name == "socat" and process.parent.args : "*exec*")
157    )
158  ) or
159  (
160    process.name : ("nc", "ncat", "netcat", "nc.openbsd") and process.args_count >= 3 and 
161    not process.args : ("-*z*", "-*l*")
162  ) or
163  (
164    process.name : "python*" and process.args : "-c" and process.args : (
165      "*import*pty*spawn*", "*import*subprocess*call*"
166    )
167  ) or
168  (
169    process.name : "perl*" and process.args : "-e" and process.args : "*socket*" and process.args : (
170      "*exec*", "*system*"
171    )
172  ) or
173  (
174    process.name : "ruby*" and process.args : ("-e", "-rsocket") and process.args : (
175      "*TCPSocket.new*", "*TCPSocket.open*"
176    )
177  ) or
178  (
179    process.name : "lua*" and process.args : "-e" and process.args : "*socket.tcp*" and process.args : (
180      "*io.popen*", "*os.execute*"
181    )
182  ) or
183  (process.name : "php*" and process.args : "-r" and process.args : "*fsockopen*" and process.args : "*/bin/*sh*") or 
184  (process.name : ("awk", "gawk", "mawk", "nawk") and process.args : "*/inet/tcp/*") or 
185  (process.name in ("openssl", "telnet")) or
186  (
187    process.args : (
188      "./*", "/boot/*", "/dev/shm/*", "/etc/cron.*/*", "/etc/init.d/*", "/etc/update-motd.d/*", "/run/*", "/srv/*",
189      "/tmp/*", "/var/tmp/*", "/var/log/*", "/opt/*"
190    ) and process.args_count == 1
191  )
192) and 
193not (
194  process.parent.args == "--force" or
195  process.args in ("/usr/games/lolcat", "/usr/bin/screenfetch") or
196  process.parent.name == "system-crash-notification"
197)
198'''
199
200[[rule.threat]]
201framework = "MITRE ATT&CK"
202
203[[rule.threat.technique]]
204id = "T1037"
205name = "Boot or Logon Initialization Scripts"
206reference = "https://attack.mitre.org/techniques/T1037/"
207
208[rule.threat.tactic]
209id = "TA0003"
210name = "Persistence"
211reference = "https://attack.mitre.org/tactics/TA0003/"

Triage and analysis

Investigating Process Spawned from Message-of-the-Day (MOTD)

The message-of-the-day (MOTD) is used to display a customizable system-wide message or information to users upon login in Linux.

Attackers can abuse message-of-the-day (motd) files to run scripts, commands or malicious software every time a user connects to a system over SSH or a serial connection, by creating a new file within the /etc/update-motd.d/ directory. Files in these directories will automatically run with root privileges when they are made executable.

This rule identifies the execution of potentially malicious processes from a MOTD script, which is not likely to occur as default benign behavior.

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 from which the suspicious process was executed.
    • $osquery_0
  • Investigate whether any other files in the /etc/update-motd.d/ directory 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 other alerts associated with the user/host during the past 48 hours.
  • 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
  • Message-of-the-Day (MOTD) File Creation - 96d11d31-9a79-480f-8401-da28b194608f

False positive analysis

  • This activity is unlikely to happen legitimately. Any activity that triggered the alert and is not inherently malicious must be monitored by the security team.

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.
  • 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 MOTD files or restore them 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

to-top