bugbounty-cheatsheet/cheatsheets/template-injection.md
2017-09-12 17:23:23 +02:00

23 lines
196 B
Markdown

## Template Injection
**Ruby**
```ruby
<%=`id`%>
```
**Twig**
The following payload should output `49`.
```
{{7*'7'}}
```
**Jinja**
This payload should output `7777777`.
```
{{7*'7'}}
```