# Apache HTTP Server SSI Remote Command Execution [中文版本(Chinese version)](README.zh-cn.md) Apache HTTP Server with Server Side Includes (SSI) enabled allows server-side execution of commands through special SSI directives in HTML files. When misconfigured, this feature can be exploited through file upload vulnerabilities. When testing arbitrary file upload vulnerabilities, the target server might block files with PHP extensions. However, if the server has SSI and CGI support enabled, attackers can upload an SHTML file and execute arbitrary commands using the `` syntax. References: - [Apache SSI Documentation](https://httpd.apache.org/docs/2.4/howto/ssi.html) - [W3 SSI Directives](https://www.w3.org/Jigsaw/Doc/User/SSI.html) ## Environment Setup Execute the following command to start an Apache HTTP Server with SSI and CGI support: ``` docker compose up -d ``` After the server is started, visit `http://your-ip:8080/upload.php` to access the upload form. ## Vulnerability Reproduction While uploading PHP files is not allowed, we can upload a file named `shell.shtml` with the following content: ```shtml ``` ![Upload Interface](1.png) After successful upload, visiting the shell.shtml file will execute the command, demonstrating the vulnerability: ![Command Execution Result](2.png)