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"
  5min_stack_comments = "New fields added: required_fields, related_integrations, setup"
  6min_stack_version = "8.3.0"
  7updated_date = "2024/02/21"
  8
  9[transform]
 10[[transform.osquery]]
 11label = "Osquery - Retrieve Listening Ports"
 12query = "SELECT pid, address, port, socket, protocol, path FROM listening_ports"
 13
 14[[transform.osquery]]
 15label = "Osquery - Retrieve Open Sockets"
 16query = "SELECT pid, family, remote_address, remote_port, socket, state FROM process_open_sockets"
 17
 18[[transform.osquery]]
 19label = "Osquery - Retrieve Process Info"
 20query = "SELECT name, cmdline, parent, path, uid FROM processes"
 21
 22[[transform.osquery]]
 23label = "Osquery - Retrieve Process Info for Webapp User"
 24query = "SELECT name, cmdline, parent, path, uid FROM processes WHERE uid = {{process.user.id}}"
 25
 26[[transform.osquery]]
 27label = "Osquery - Retrieve Crontab Information"
 28query = "SELECT * FROM crontab"
 29
 30[rule]
 31author = ["Elastic"]
 32description = """
 33Identifies suspicious commands executed via a web server, which may suggest a vulnerability and remote shell access. 
 34Attackers may exploit a vulnerability in a web application to execute commands via a web server, or place a backdoor 
 35file that can be abused to gain code execution as a mechanism for persistence.
 36"""
 37false_positives = [
 38    """
 39    Network monitoring or management products may have a web server component that runs shell commands as part of normal
 40    behavior.
 41    """,
 42]
 43from = "now-9m"
 44index = ["logs-endpoint.events.*", "endgame-*"]
 45language = "eql"
 46license = "Elastic License v2"
 47name = "Potential Remote Code Execution via Web Server"
 48note = """## Triage and analysis
 49
 50### Investigating Potential Remote Code Execution via Web Server
 51
 52Adversaries 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.
 53
 54This rule detects a web server process spawning script and command line interface programs, potentially indicating attackers executing commands using the web shell.
 55
 56> **Note**:
 57> 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.
 58> 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.
 59
 60#### Possible investigation steps
 61
 62- Investigate abnormal behaviors by the subject process such as network connections, file modifications, and any other spawned child processes.
 63  - Investigate listening ports and open sockets to look for potential reverse shells or data exfiltration.
 64    - $osquery_0
 65    - $osquery_1
 66  - Investigate the process information for malicious or uncommon processes/process trees.
 67    - $osquery_2
 68  - 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.
 69    - $osquery_3
 70- Examine the command line to determine which commands or scripts were executed.
 71- Investigate other alerts associated with the user/host during the past 48 hours.
 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### False positive analysis
 83
 84- 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.
 85
 86### Response and remediation
 87
 88- Initiate the incident response process based on the outcome of the triage.
 89- Isolate the involved host to prevent further post-compromise behavior.
 90- If the triage identified malware, search the environment for additional compromised hosts.
 91  - Implement temporary network rules, procedures, and segmentation to contain the malware.
 92  - Stop suspicious processes.
 93  - Immediately block the identified indicators of compromise (IoCs).
 94  - Inspect the affected systems for additional malware backdoors like reverse shells, reverse proxies, or droppers that attackers could use to reinfect the system.
 95- Remove and block malicious artifacts identified during triage.
 96- 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.
 97- Run a full antimalware scan. This may reveal additional artifacts left in the system, persistence mechanisms, and malware components.
 98- Determine the initial vector abused by the attacker and take action to prevent reinfection through the same vector.
 99- Leverage the incident response data and logging to improve the mean time to detect (MTTD) and the mean time to respond (MTTR).
100"""
101references = [
102    "https://pentestlab.blog/tag/web-shell/",
103    "https://www.elastic.co/security-labs/elastic-response-to-the-the-spring4shell-vulnerability-cve-2022-22965",
104]
105risk_score = 73
106rule_id = "f16fca20-4d6c-43f9-aec1-20b6de3b0aeb"
107setup = """## Setup
108
109This rule requires data coming in from Elastic Defend.
110
111### Elastic Defend Integration Setup
112Elastic 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.
113
114#### Prerequisite Requirements:
115- Fleet is required for Elastic Defend.
116- To configure Fleet Server refer to the [documentation](https://www.elastic.co/guide/en/fleet/current/fleet-server.html).
117
118#### The following steps should be executed in order to add the Elastic Defend integration on a Linux System:
119- Go to the Kibana home page and click "Add integrations".
120- In the query bar, search for "Elastic Defend" and select the integration to see more details about it.
121- Click "Add Elastic Defend".
122- Configure the integration name and optionally add a description.
123- Select the type of environment you want to protect, either "Traditional Endpoints" or "Cloud Workloads".
124- 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).
125- We suggest selecting "Complete EDR (Endpoint Detection and Response)" as a configuration setting, that provides "All events; all preventions"
126- 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.
127For more details on Elastic Agent configuration settings, refer to the [helper guide](https://www.elastic.co/guide/en/fleet/8.10/agent-policy.html).
128- Click "Save and Continue".
129- 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.
130For more details on Elastic Defend refer to the [helper guide](https://www.elastic.co/guide/en/security/current/install-endpoint.html).
131"""
132severity = "high"
133tags = [
134        "Domain: Endpoint",
135        "OS: Linux",
136        "Use Case: Threat Detection",
137        "Tactic: Persistence",
138        "Tactic: Initial Access",
139        "Data Source: Elastic Endgame",
140        "Use Case: Vulnerability",
141        "Resources: Investigation Guide",
142        "Data Source: Elastic Defend"
143        ]
144timestamp_override = "event.ingested"
145type = "eql"
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[[rule.threat]]
169framework = "MITRE ATT&CK"
170
171[[rule.threat.technique]]
172id = "T1505"
173name = "Server Software Component"
174reference = "https://attack.mitre.org/techniques/T1505/"
175
176[[rule.threat.technique.subtechnique]]
177id = "T1505.003"
178name = "Web Shell"
179reference = "https://attack.mitre.org/techniques/T1505/003/"
180
181[rule.threat.tactic]
182id = "TA0003"
183name = "Persistence"
184reference = "https://attack.mitre.org/tactics/TA0003/"
185
186[[rule.threat]]
187framework = "MITRE ATT&CK"
188
189[[rule.threat.technique]]
190id = "T1190"
191name = "Exploit Public-Facing Application"
192reference = "https://attack.mitre.org/techniques/T1190/"
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