mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
Update README.md
Add reference to debug tag for Jinja2
This commit is contained in:
parent
cc95f4e386
commit
502a8121b4
1 changed files with 12 additions and 1 deletions
|
@ -35,6 +35,7 @@
|
|||
* [Jinja2](#jinja2)
|
||||
* [Basic injection](#basic-injection)
|
||||
* [Template format](#template-format)
|
||||
* [Debug Statement](#debug-statement)
|
||||
* [Dump all used classes](#dump-all-used-classes)
|
||||
* [Dump all config variables](#dump-all-config-variables)
|
||||
* [Read remote file](#read-remote-file)
|
||||
|
@ -338,6 +339,16 @@ The above injections have been tested on Flask application.
|
|||
|
||||
```
|
||||
|
||||
### Debug Statement¶
|
||||
|
||||
If the Debug Extension is enabled, a `{% debug %}` tag will be available to dump the current context as well as the available filters and tests. This is useful to see what’s available to use in the template without setting up a debugger.
|
||||
|
||||
```python
|
||||
<pre>{% debug %}</pre>
|
||||
```
|
||||
|
||||
Source: https://jinja.palletsprojects.com/en/2.11.x/templates/#debug-statement
|
||||
|
||||
### Dump all used classes
|
||||
|
||||
```python
|
||||
|
|
Loading…
Reference in a new issue