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