Questions about this topic? Sign up to ask in the talk tab.

Command Injection

From NetSec
Revision as of 00:53, 19 May 2012 by MaxSchiller (Talk | contribs) (Overview)

Jump to: navigation, search

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

RPU0j.png 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

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:
  • add more content.
  • update current content.
Command Injection is part of a series on exploitation.
<center>
</center>