Difference between revisions of "Command Injection"
MaxSchiller (Talk | contribs) (→Overview) |
|||
Line 44: | Line 44: | ||
An attacker could use any of these to inject and execute a command using the above script by requesting: | An attacker could use any of these to inject and execute a command using the above script by requesting: | ||
/whois.php?domain=www.google.com;cat /etc/passwd | /whois.php?domain=www.google.com;cat /etc/passwd | ||
+ | |||
+ | {{quote|Use the IFS environment variable in [[bash]] to create whitespace if it is not allowed by filters|Xochipilli}} | ||
+ | |||
+ | xo@lux ~ $ echo${IFS}lol | ||
+ | lol | ||
== Perl == | == Perl == |
Revision as of 00:21, 2 July 2012
Contents
Overview
A Command Injection vulnerability is an escape string or format string vulnerability that occurs when unsanitized user input is passed to a system shell (system(), exec() etc). An attacker can exploit this vulnerability with a command sequence appended to the appropriate format or escape string to execute arbitrary commands. An attacker exploiting this vulnerability may as well have a remote shell.
Testing for Injection
During any web application testing, remember that any HTTP input could be vulnerable.
Testing for command injections is possible by appending a command to any of the following escape strings:
- ;
- |
- &
- &&
Testing for bash command substitution may also apply.
- ``
- $()
Example vulnerability
This code is vulnerable. Do not use as a whois tool on your site. |
vulnerable.php:
<syntaxhighlight lang="php"> <?php $whois=system("whois {$_GET['domain']}"); echo($whois); ?></syntaxhighlight> |
Exploitation
UNIX
On a UNIX shell, commands can be injected in a number of ways. Using a semicolon, which delimits commands:
cd ~; ls
Using an ampersand, a control operator:
cd ~ && ls
Using a pipe, a bash operator for stringing commands together:
ls | grep filename
Or using backticks or a $ for command substitution
ls /home/$(whoami)
or
ls /home/`whoami`
An attacker could use any of these to inject and execute a command using the above script by requesting:
/whois.php?domain=www.google.com;cat /etc/passwd
Xochipilli says |
---|
Use the IFS environment variable in bash to create whitespace if it is not allowed by filters |
xo@lux ~ $ echo${IFS}lol lol
Perl
A slightly lesser known command injection technique uses Perl's open() function. This is useful for exploiting CGI scripts.
In addition to system() and exec(), Perl's open() function can also execute commands, because it is used to open pipes. In this case, you can use | as a delimiter, because Perl looks for | to indicate that open() is opening a pipe. An attacker can hijack an open() call which otherwise would not even execute a command by adding a | to his query.
This article contains too little information, it should be expanded or updated. |
---|
Things you can do to help:
|