Web shell
A web shell is a web security threat, which is a web-based implementation of the shell concept. A web shell is able to be uploaded to a web server to allow remote access to the web server, such as the web server's file system. A web shell is unique in that it enables users to access a web server by way of a web browser that acts like a command-line interface.
A user can access a remote computer via the World Wide Web using a web browser on any type of system, whether it's a desktop computer or a mobile phone with a web browser, and perform tasks on the remote system. No command-line environment is required on either the host or the client. A web shell is often considered a remote access trojan.
A web shell could be programmed in any language that the target server supports. Web shells are most commonly written in PHP due to the widespread use of PHP, however, Active Server Pages, ASP.NET, Python, Perl, Ruby and Unix shell scripts are also used, although not as common because it is not very common for web servers to support these languages.
Using network monitoring tools such as Wireshark, an attacker can find vulnerabilities which are exploited resulting in a web shell installation. These vulnerabilities may be present in content management system applications or the web server's software.
An attacker can use a web shell to issue commands, perform privilege escalation on the web server, and the ability to upload, delete, download and execute files on the web server.
General usage
Web shells are used in attacks mostly because they are multi-purpose and are difficult to detect.Web shells are commonly used for:
- Data theft
- Infecting website visitors
- Website defacement by modifying files with a malicious intent
- Launch distributed denial of service attacks
- To relay commands inside the network which is inaccessible over the Internet
- To use as command and control base, for example as a bot in a botnet system or in way to compromise the security of additional external networks.
Delivery of web shells
- SQL injection;
- Vulnerabilities in applications and services ;
- File processing and uploading vulnerabilities, which can be mitigated by e.g. limiting the file types that can be uploaded;
- Remote file inclusion and local file inclusion vulnerabilities;
- Remote code execution;
- Exposed administration interfaces;
Content-Type
header to be sent by the attacker in a file upload to bypass improper file validation, which will result in a successful upload of the attacker's shell.Examples of notable web shells
- b374k – A web shell written in PHP with abilities such as monitoring processes & command execution. The latest version of the b374k shell is 3.2.3.
- C99 – A web shell capable of showing the web server's security standards and has a self-destruction option. The original version of C99Shell does not work with PHP 7 due to the usage of removed functions.
- China Chopper – A web shell which is only 4 kilobytes in size, which was first discovered in 2012. This web shell is commonly used by malicious Chinese actors, including advanced persistent threat groups, to remotely access web servers. This web shell has two parts, the client interface and the receiver host file on the compromised web server. Has many commands and control features such as a password brute-force attack option.
- R57 – The R57 web shell has tools to scan the infected web server for other web shell installations, with the option to remove or overwrite them.
- WSO – Has the ability to be password protected with a login form, some variants can disguise as a fake HTTP error page.
If an attacker inserts this line of code into a malicious file with a PHP filename extension on a web server that is running PHP, the attacker can issue commands, for example reading the
/etc/passwd
file, through a web browser using the following Uniform Resource Locator if the web shell was located at uploads/webshell.php
:The above request will take the value of the
x
URL parameter, decode the URL and send the following shell command:If the permissions of the
/etc/passwd
file allow viewing the file, the web server will send the contents of /etc/passwd
to the web browser and the browser will then display the contents of the /etc/passwd
file or any other file the attacker wishes to view.This attack could have been prevented if the file permissions did not allow viewing the file or if the shell functions of PHP were disabled so that arbitrary shell commands cannot be executed from PHP.
Other malicious actions are able to be executed by attackers with that web shell, such as replacing the contents of a file on the web server. For example, consider the following command:
The above command could be used to replace the contents of the
index.php
file with the text "x", which is one way a web page could be defaced, or create the index.php
file with the contents if the file does not exist. Attackers can also use the Bash command Prevention and mitigation
A web shell is usually installed by taking advantage of vulnerabilities present in the web server's software. That is why removal of these vulnerabilities are important to avoid the potential risk of a compromised web server.The following are security measures for preventing the installation of a web shell:
- Regularly update the applications and the host server's operating system to ensure immunity from known bugs
- Deploying a demilitarized zone between the web facing servers and the internal networks
- Secure configuration of the web server
- Closing or blocking ports and services which are not used
- Using user input data validation to limit local and remote file inclusion vulnerabilities
- Use a reverse proxy service to restrict the administrative URL's to known legitimate ones
- Frequent vulnerability scan to detect areas of risk and conduct regular scans using web security software
- Deploy a firewall
- Disable directory browsing
- Not using default passwords
Detection
The following are common indicators that a web shell is present on a web server:
- Abnormal high web server usage ;
- Files with an abnormal timestamp ;
- Unknown files in a web server;
- Files having dubious references, for example,
cmd.exe
oreval
; - Unknown connections in the logs of web server
Dubious logins from DMZ servers to internal sub-nets and vice versa.
Web shells may also contain a login form, which is often disguised as an error page.
Using web shells, adversaries can modify the.htaccess file on web servers to redirect search engine requests to the web page with malware or spam. Often web shells detect the user-agent and the content presented to the search engine spider is different from that presented to the user's browser. To find a web shell a user-agent change of the crawler bot is usually required. Once the web shell is identified, it can be deleted easily.
Analyzing the web server's log could specify the exact location of the web shell. Legitimate users/visitor usually have different user-agents and referers, on the other hand, a web shell is usually only visited by the attacker, therefore have very few variants of user-agent strings.