Potential Remote Code Execution via Web Server

Identifies suspicious commands executed via a web server, which may suggest a vulnerability and remote shell access. Attackers may exploit a vulnerability in a web application to execute commands via a web server, or place a backdoor file that can be abused to gain code execution as a mechanism for persistence.

Elastic rule (View on GitHub)

  1[metadata]
  2creation_date = "2023/03/04"
  3integration = ["endpoint"]
  4maturity = "production"
  5updated_date = "2024/05/21"
  6
  7[transform]
  8[[transform.osquery]]
  9label = "Osquery - Retrieve Listening Ports"
 10query = "SELECT pid, address, port, socket, protocol, path FROM listening_ports"
 11
 12[[transform.osquery]]
 13label = "Osquery - Retrieve Open Sockets"
 14query = "SELECT pid, family, remote_address, remote_port, socket, state FROM process_open_sockets"
 15
 16[[transform.osquery]]
 17label = "Osquery - Retrieve Process Info"
 18query = "SELECT name, cmdline, parent, path, uid FROM processes"
 19
 20[[transform.osquery]]
 21label = "Osquery - Retrieve Process Info for Webapp User"
 22query = "SELECT name, cmdline, parent, path, uid FROM processes WHERE uid = {{process.user.id}}"
 23
 24[[transform.osquery]]
 25label = "Osquery - Retrieve Crontab Information"
 26query = "SELECT * FROM crontab"
 27
 28
 29[rule]
 30author = ["Elastic"]
 31description = """
 32Identifies suspicious commands executed via a web server, which may suggest a vulnerability and remote shell access.
 33Attackers may exploit a vulnerability in a web application to execute commands via a web server, or place a backdoor
 34file that can be abused to gain code execution as a mechanism for persistence.
 35"""
 36false_positives = [
 37    """
 38    Network monitoring or management products may have a web server component that runs shell commands as part of normal
 39    behavior.
 40    """,
 41]
 42from = "now-9m"
 43index = ["logs-endpoint.events.*", "endgame-*"]
 44language = "eql"
 45license = "Elastic License v2"
 46name = "Potential Remote Code Execution via Web Server"
 47note = """## Triage and analysis
 48
 49### Investigating Potential Remote Code Execution via Web Server
 50
 51Adversaries may backdoor web servers with web shells to establish persistent access to systems. A web shell is a malicious script, often embedded into a compromised web server, that grants an attacker remote access and control over the server. This enables the execution of arbitrary commands, data exfiltration, and further exploitation of the target network.
 52
 53This rule detects a web server process spawning script and command line interface programs, potentially indicating attackers executing commands using the web shell.
 54
 55> **Note**:
 56> 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.
 57> 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.
 58
 59#### Possible investigation steps
 60
 61- Investigate abnormal behaviors by the subject process such as network connections, file modifications, and any other spawned child processes.
 62  - Investigate listening ports and open sockets to look for potential reverse shells or data exfiltration.
 63    - $osquery_0
 64    - $osquery_1
 65  - Investigate the process information for malicious or uncommon processes/process trees.
 66    - $osquery_2
 67  - Investigate the process tree spawned from the user that is used to run the web application service. A user that is running a web application should not spawn other child processes.
 68    - $osquery_3
 69- Examine the command line to determine which commands or scripts were executed.
 70- Investigate other alerts associated with the user/host during the past 48 hours.
 71- If scripts or executables were dropped, retrieve the files and determine if they are malicious:
 72  - Use a private sandboxed malware analysis system to perform analysis.
 73    - Observe and collect information about the following activities:
 74      - Attempts to contact external domains and addresses.
 75        - Check if the domain is newly registered or unexpected.
 76        - Check the reputation of the domain or IP address.
 77      - File access, modification, and creation activities.
 78      - Cron jobs, services and other persistence mechanisms.
 79        - $osquery_4
 80
 81### False positive analysis
 82
 83- 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.
 84
 85### Response and remediation
 86
 87- Initiate the incident response process based on the outcome of the triage.
 88- Isolate the involved host to prevent further post-compromise behavior.
 89- If the triage identified malware, search the environment for additional compromised hosts.
 90  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 91  - Stop suspicious processes.
 92  - Immediately block the identified indicators of compromise (IoCs).
 93  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 94- Remove and block malicious artifacts identified during triage.
 95- 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.
 96- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 97- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 98- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
 99"""
100references = [
101    "https://pentestlab.blog/tag/web-shell/",
102    "https://www.elastic.co/security-labs/elastic-response-to-the-the-spring4shell-vulnerability-cve-2022-22965",
103]
104risk_score = 73
105rule_id = "f16fca20-4d6c-43f9-aec1-20b6de3b0aeb"
106setup = """## Setup
107
108This rule requires data coming in from Elastic Defend.
109
110### Elastic Defend Integration Setup
111Elastic 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.
112
113#### Prerequisite Requirements:
114- Fleet is required for Elastic Defend.
115- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
116
117#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
118- Go to the Kibana home page and click "Add integrations".
119- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
120- Click "Add Elastic Defend".
121- Configure the integration name and optionally add a description.
122- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
123- 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).
124- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
125- 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.
126For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
127- Click "Save and Continue".
128- 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.
129For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
130"""
131severity = "high"
132tags = [
133    "Domain: Endpoint",
134    "OS: Linux",
135    "Use Case: Threat Detection",
136    "Tactic: Persistence",
137    "Tactic: Initial Access",
138    "Data Source: Elastic Endgame",
139    "Use Case: Vulnerability",
140    "Resources: Investigation Guide",
141    "Data Source: Elastic Defend",
142]
143timestamp_override = "event.ingested"
144type = "eql"
145
146query = '''
147process where host.os.type == "linux" and event.type == "start" and
148event.action in ("exec", "exec_event") and process.parent.executable : (
149  "/usr/sbin/nginx", "/usr/local/sbin/nginx",
150  "/usr/sbin/apache", "/usr/local/sbin/apache",
151  "/usr/sbin/apache2", "/usr/local/sbin/apache2",
152  "/usr/sbin/php*", "/usr/local/sbin/php*",
153  "/usr/sbin/lighttpd", "/usr/local/sbin/lighttpd",
154  "/usr/sbin/hiawatha", "/usr/local/sbin/hiawatha",
155  "/usr/local/bin/caddy", 
156  "/usr/local/lsws/bin/lswsctrl",
157  "*/bin/catalina.sh"
158) and
159process.name : (
160  "bash", "dash", "sh", "tcsh", "csh", "zsh", "ksh", "fish", "python*", "php*", "perl", "ruby", "lua*", "openssl", "nc",
161  "netcat", "ncat", "telnet", "awk", "socat"
162  ) and process.args : (
163  "whoami", "id", "uname", "cat", "hostname", "ip", "curl", "wget", "pwd", "ls", "cd", "python*", "php*", "perl",
164  "ruby", "lua*", "openssl", "nc", "netcat", "ncat", "telnet", "awk", "socat"
165  ) and not process.name == "phpquery"
166'''
167
168
169[[rule.threat]]
170framework = "MITRE ATT&CK"
171[[rule.threat.technique]]
172id = "T1505"
173name = "Server Software Component"
174reference = "https://attack.mitre.org/techniques/T1505/"
175[[rule.threat.technique.subtechnique]]
176id = "T1505.003"
177name = "Web Shell"
178reference = "https://attack.mitre.org/techniques/T1505/003/"
179
180
181
182[rule.threat.tactic]
183id = "TA0003"
184name = "Persistence"
185reference = "https://attack.mitre.org/tactics/TA0003/"
186[[rule.threat]]
187framework = "MITRE ATT&CK"
188[[rule.threat.technique]]
189id = "T1190"
190name = "Exploit Public-Facing Application"
191reference = "https://attack.mitre.org/techniques/T1190/"
192
193
194[rule.threat.tactic]
195id = "TA0001"
196name = "Initial Access"
197reference = "https://attack.mitre.org/tactics/TA0001/"

Triage and analysis

Investigating Potential Remote Code Execution via Web Server

Adversaries may backdoor web servers with web shells to establish persistent access to systems. A web shell is a malicious script, often embedded into a compromised web server, that grants an attacker remote access and control over the server. This enables the execution of arbitrary commands, data exfiltration, and further exploitation of the target network.

This rule detects a web server process spawning script and command line interface programs, potentially indicating attackers executing commands using the web shell.

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 abnormal behaviors by the subject process such as network connections, file modifications, and any other spawned child processes.
    • Investigate listening ports and open sockets to look for potential reverse shells or data exfiltration.
      • $osquery_0
      • $osquery_1
    • Investigate the process information for malicious or uncommon processes/process trees.
      • $osquery_2
    • Investigate the process tree spawned from the user that is used to run the web application service. A user that is running a web application should not spawn other child processes.
      • $osquery_3
  • Examine the command line to determine which commands or scripts were executed.
  • Investigate other alerts associated with the user/host during the past 48 hours.
  • 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

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.
  • 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.
  • 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