Web shellA web shell is a shell-like interface that enables a web server to be remotely accessed, often for the purposes of cyberattacks.[1] A web shell is unique in that a web browser is used to interact with it.[2][3] A web shell could be programmed in any programming language that is supported on a server. Web shells are most commonly written in PHP due to the widespread usage of PHP for web applications. Though Active Server Pages, ASP.NET, Python, Perl, Ruby, and Unix shell scripts are also used.[1][2][3] Using network monitoring tools, an attacker can find vulnerabilities that can potentially allow delivery of a web shell. These vulnerabilities are often present in applications that are run on a web server.[2] An attacker can use a web shell to issue shell commands, perform privilege escalation on the web server, and the ability to upload, delete, download, and execute files to and from the web server.[2] General usageWeb shells are used in attacks mostly because they are multi-purpose and difficult to detect.[4] They are commonly used for:
Web shells give hackers the ability to steal information, corrupt data, and upload malwares that are more damaging to a system. The issue increasingly escalates when hackers employ compromised servers to infiltrate a system and jeopardize additional machines. Web shells are also a way that malicious individuals target a variety of industries, including government, financial, and defense through cyber espionage. One of the very well known web shells used in this manner is known as “China Chopper.”[6] Delivery of web shellsWeb shells are installed through vulnerabilities in web application or weak server security configuration including the following:[2][4]
An attacker may also modify (spoof) the ExampleThe following is a simple example of a web shell written in PHP that executes and outputs the result of a shell command: <?=`$_GET[x]`?>
Assuming the filename is https://example.com/example.php?x=cat%20%2Fetc%2Fpasswd The above request will take the value of the cat /etc/passwd
This could have been prevented if the shell functions of PHP were disabled so that arbitrary shell commands cannot be executed from PHP. Prevention and mitigationA web shell is usually installed by taking advantage of vulnerabilities present in the web server's software. That is why removal of these vulnerabilities is important to avoid the potential risk of a compromised web server. The following are security measures for preventing the installation of a web shell:[2][3]
DetectionWeb shells can be easily modified, so it's not easy to detect web shells and antivirus software are often not able to detect web shells.[2][9] The following are common indicators that a web shell is present on a web server:[2][3]
For example, a file generating suspicious traffic (e.g. a PNG file requesting with POST parameters).[2][10][11][12] Dubious logins from DMZ servers to internal sub-nets and vice versa.[2] Web shells may also contain a login form, which is often disguised as an error page.[2][13][14][15] Using web shells, adversaries can modify the .htaccess file (on servers running the Apache HTTP Server software) 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.[2] 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.[2] See alsoReferences
|