bypass techniques added

This commit is contained in:
xplo1t-sec 2024-03-09 21:46:33 +05:30
parent dd2b68b70e
commit 033982dc30

View file

@ -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