Skip to content

Commit

Permalink
Merge pull request #708 from xplo1t-sec/master
Browse files Browse the repository at this point in the history
bypass techniques added
  • Loading branch information
swisskyrepo committed Apr 3, 2024
2 parents b19dc06 + 033982d commit 8ef458d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Command Injection/README.md
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8ef458d

Please sign in to comment.