Dark Mode
Capec-101 Detail
Server Side Include (SSI) Injection
Detailed Software Likelihood: High Typical Severity: High
Parents: 253
Threats: T290
Tools: 18
An attacker can use Server Side Include (SSI) Injection to send code to a web application that then gets executed by the web server. Doing so enables the attacker to achieve similar results to Cross Site Scripting, viz., arbitrary code execution and information disclosure, albeit on a more limited scale, since the SSI directives are nowhere near as powerful as a full-fledged scripting language. Nonetheless, the attacker can conveniently gain access to sensitive files, such as password files, and execute shell commands.
Not present
| External ID | Source | Link | Description |
|---|---|---|---|
| CAPEC-101 | capec | https://capec.mitre.org/data/definitions/101.html | |
| CWE-97 | cwe | http://cwe.mitre.org/data/definitions/97.html | |
| CWE-74 | cwe | http://cwe.mitre.org/data/definitions/74.html | |
| CWE-20 | cwe | http://cwe.mitre.org/data/definitions/20.html | |
| 36 | WASC | http://projects.webappsec.org/SSI-Injection | SSI Injection |
| OWASP Attacks | https://owasp.org/www-community/attacks/Server-Side_Includes_(SSI)_Injection | Server-Side Includes (SSI) Injection | |
| REF-610 | reference_from_CAPEC | https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/07-Input_Validation_Testing/08-Testing_for_SSI_Injection.html | OWASP Web Security Testing Guide, The Open Web Application Security Project (OWASP) |
Explore
-
Determine applicability: The adversary determines whether server side includes are enabled on the target web server.
| Techniques |
|---|
| Look for popular page file names. The attacker will look for .shtml, .shtm, .asp, .aspx, and other well-known strings in URLs to help determine whether SSI functionality is enabled. |
| Fetch .htaccess file. In Apache web server installations, the .htaccess file may enable server side includes in specific locations. In those cases, the .htaccess file lives inside the directory where SSI is enabled, and is theoretically fetchable from the web server. Although most web servers deny fetching the .htaccess file, a misconfigured server will allow it. Thus, an attacker will frequently try it. |
Experiment
-
Find Injection Point: Look for user controllable input, including HTTP headers, that can carry server side include directives to the web server.
| Techniques |
|---|
| Use a spidering tool to follow and record all links. Make special note of any links that include parameters in the URL. |
| Use a proxy tool to record all links visited during a manual traversal of the web application. Make special note of any links that include parameters in the URL. Manual traversal of this type is frequently necessary to identify forms that are GET method forms rather than POST forms. |
Exploit
-
Inject SSI: Using the found injection point, the adversary sends arbitrary code to be inlcuded by the application on the server side. They may then need to view a particular page in order to have the server execute the include directive and run a command or open a file on behalf of the adversary.
- A web server that supports server side includes and has them enabled
- User controllable input that can carry include directives to the web server
- None: No specialized resources are required to execute this type of attack. Determining whether the server supports SSI does not require special tools, and nor does injecting directives that get executed. Spidering tools can make the task of finding and following links easier.
| Medium |
|---|
| The attacker needs to be aware of SSI technology, determine the nature of injection and be able to craft input that results in the SSI directives being executed. |
| Integrity | Availability | Confidentiality |
|---|---|---|
| Execute Unauthorized Commands (Run Arbitrary Code) | Execute Unauthorized Commands (Run Arbitrary Code) | Read Data |
| Execute Unauthorized Commands (Run Arbitrary Code) |
- Consider a website hosted on a server that permits Server Side Includes (SSI), such as Apache with the "Options Includes" directive enabled. Whenever an error occurs, the HTTP Headers along with the entire request are logged, which can then be displayed on a page that allows review of such errors. A malicious user can inject SSI directives in the HTTP Headers of a request designed to create an error. When these logs are eventually reviewed, the server parses the SSI directives and executes them.