githubEdit

Command Injections

🔧 Injection Operators

🧪 Semicolon

;       %3b       # → Executes both commands (Linux & Windows)

🔃 New Line

\n      %0a       # → Executes both commands (Linux & Windows)

🖼️ Background

&       %26       # → Executes both commands (second output usually appears first)

🧵 Pipe

|       %7c       # → Executes both commands (only second output is shown)

🟢 AND Operator

&&      %26%26    # → Executes second command only if first succeeds (Linux & Windows)

🔴 OR Operator

||      %7c%7c     # → Executes second command only if first fails (Linux & Windows)

🌀 Sub-Shell (Linux Only)

``       %60%60        # → Sub-shell execution (Linux-only)
$()      %24%28%29     # → Sub-shell execution (Linux-only)

🐧 Linux - Filtered Character Bypass

🔍 View Environment Variables

⛓️ Space Bypass

🔀 Other Character Bypass

⛔ Blacklisted Command Bypass

✒️ Character Insertion

🔠 Case Manipulation

🔄 Reversed Commands

📦 Encoded Commands


📦 Windows - Filtered Character Bypass

🔍 View Environment Variables (PowerShell)

⛓️ Space Bypass

🔁 Other Character Bypass

⛔ Blacklisted Command Bypass

✒️ Character Insertion

🔠 Case Manipulation

🔄 Reversed Commands

📦 Encoded Commands

Last updated