University of Washington IMAP Toolkit 2007f on UNIX, as used in imap_open() in PHP and other products, launches an rsh command (by means of the imap_rimap function in c-client/imap4r1.c and the tcp_aopen function in osdep/unix/tcp_unix.c) without preventing argument injection, which might allow remote attackers to execute arbitrary OS commands if the IMAP server name is untrusted input (e.g., entered by a user of a web application) and if rsh has been replaced by a program with different argument semantics. For example, if rsh is a link to ssh (as seen on Debian and Ubuntu systems), then the attack can use an IMAP server name containing a -oProxyCommand argument.
The product constructs a string for a command to be executed by a separate component in another control sphere, but it does not properly delimit the intended arguments, options, or switches within that command string.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Php | Php | 5.6.0 (including) | 5.6.38 (including) |
Php | Php | 7.0.0 (including) | 7.0.32 (including) |
Php | Php | 7.1.0 (including) | 7.1.24 (including) |
Php | Php | 7.2.0 (including) | 7.2.12 (including) |
Php-imap | Ubuntu | trusty | * |
Php7.0 | Ubuntu | upstream | * |
Php7.0 | Ubuntu | xenial | * |
Php7.2 | Ubuntu | bionic | * |
Php7.2 | Ubuntu | cosmic | * |
Php7.2 | Ubuntu | disco | * |
Php7.2 | Ubuntu | upstream | * |
Php7.3 | Ubuntu | upstream | * |
Uw-imap | Ubuntu | bionic | * |
Uw-imap | Ubuntu | cosmic | * |
Uw-imap | Ubuntu | disco | * |
Uw-imap | Ubuntu | trusty | * |
Uw-imap | Ubuntu | trusty/esm | * |
Uw-imap | Ubuntu | upstream | * |
Uw-imap | Ubuntu | xenial | * |
When creating commands using interpolation into a string, developers may assume that only the arguments/options that they specify will be processed. This assumption may be even stronger when the programmer has encoded the command in a way that prevents separate commands from being provided maliciously, e.g. in the case of shell metacharacters. When constructing the command, the developer may use whitespace or other delimiters that are required to separate arguments when the command. However, if an attacker can provide an untrusted input that contains argument-separating delimiters, then the resulting command will have more arguments than intended by the developer. The attacker may then be able to change the behavior of the command. Depending on the functionality supported by the extraneous arguments, this may have security-relevant consequences.