Command-injections
๐ง Injection Operators
; %3b # โ Executes both commands (Linux & Windows)\n %0a # โ Executes both commands (Linux & Windows)& %26 # โ Executes both commands (second output usually appears first)| %7c # โ Executes both commands (only second output is shown)&& %26%26 # โ Executes second command only if first succeeds (Linux & Windows)|| %7c%7c # โ Executes second command only if first fails (Linux & Windows)`` %60%60 # โ Sub-shell execution (Linux-only)
$() %24%28%29 # โ Sub-shell execution (Linux-only)๐ง Linux - Filtered Character Bypass
๐ฆ Windows - Filtered Character Bypass
Last updated