Every Java application has a single instance of class Runtime
that allows the application to interface with the environment in which the application is running. The current runtime can be obtained from the getRuntime()
method. The exec()
method executes the specified string command by invoking an implementation-defined command processor, such as a UNIX shell or CMD.EXE
in Windows NT and later.
External programs are commonly invoked to perform a function required by the overall system. This is a form of reuse and might even be considered a crude form of component-based software engineering.
Command interpreters, such as the POSIX command-language interpreter sh
and the Windows CMD.EXE
, however, provide functionality in addition to executing a simple command.
OS command injection vulnerabilities occur when an application fails to sanitize untrusted input and uses it in the execution of arbitrary system commands (with carefully chosen arguments) or of an external program. This is a specific instance of the guideline IDS01-J. Sanitize data passed across a trust boundary. Any string data that originates from outside the program's trust boundary must be sanitized before being executed as a command on the current platform.
Noncompliant Code Example
A weakness in a privileged program caused by relying on untrusted sources such as the environment (see guideline ENV06-J. Provide a trusted environment and sanitize all inputs) can result in the execution of a command or of a program that has privileges beyond those possessed by a typical user.
This noncompliant code example attempts to send a message to an email address supplied by an untrusted user. Because untrusted data originating from the environment (see guideline ENV06-J. Provide a trusted environment and sanitize all inputs) without sanitization this code is susceptible to a command injection attack.
String address = System.getProperty("email"); if (address == null) { // handle error } Runtime runtime = Runtime.getRuntime(); Process proc = runtime.exec("mail " + address);
If an attacker supplies the following value for the "email"
environment variable:
noboday@nowhere.com ; useradd attacker
the command executed is actually two commands:
mail noboday@nowhere.com ; useradd attacker
which causes a new account to be created for the attacker.
Compliant Solution (Whitelisting)
This compliant solution sanitizes the email address by permitting only a handful of correct characters to appear, preventing command injection.
String address = System.getProperty("email"); if (address == null) { // handle error } if (!Pattern.matches("[0-9A-Za-z@.]+", address)) { // Handle error } Runtime runtime = Runtime.getRuntime(); Process proc = runtime.exec("mail " + address);
Compliant Solution
This compliant solution prevents command injection by requiring the user to select one of a predefined group of addresses. This prevents untrusted data from being added to the command.
String address = null; int filename = Integer.parseInt(System.getproperty("address")); // only allow integer choices switch(filename) { case 1: address = "root@localhost" break; // Option 1 case 2: address = "postmaster@localhost" break; // Option 2 default: // invalid break; } if (address == null) { // handle error } Runtime runtime = Runtime.getRuntime(); Process proc = runtime.exec("mail " + address);
Risk Assessment
OS command injection can cause arbitrary programs to be executed.
Guideline |
Severity |
Likelihood |
Remediation Cost |
Priority |
Level |
---|---|---|---|---|---|
IDS06-J |
high |
probable |
medium |
P12 |
L1 |
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this guideline on the CERT website.
Bibliography
[[Chess 2007]] Chapter 5: Handling Input, "Command Injection"
[[MITRE 2009]] CWE ID 78 "Failure to Preserve OS Command Structure (aka 'OS Command Injection')"
[[OWASP 2005]] Reviewing Code for OS Injection
[[Permissions 2008]] Permissions in the Java⢠SE 6 Development Kit (JDK), Sun Microsystems, Inc. (2008)
IDS05-J. Library methods should validate their parameters 13. Input Validation and Data Sanitization (IDS) IDS07-J. Prevent SQL Injection