handbook/tools/3.Web-Hacking/4.Injection/OS-Commands/Notes/3.Ways-of-Injecting-OS-Commands.md
2024-08-31 01:07:22 +02:00

659 B

Ways of Injecting OS Commands

!Pasted image 20221202124907.png

Operator Use
; Multiple shell commands are be seperated with semicolon and are executed at a time.
& It seperates two shell commands on one command line. It executes first command then second.
&& When this is used between two commands, second command is executed only if the first is true
!Pasted image 20221202125327.png