# 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](#payloads) * [References](#references) ## Payloads | Description | Payload | |-------------------------|---------| | Print a date | `` | | Print all the variables | `` | | Include a file | `` | | Execute commands | `` | | Doing a reverse shell | `` | ## References * [Server-Side Includes (SSI) Injection - OWASP](https://owasp.org/www-community/attacks/Server-Side_Includes_(SSI)_Injection)