CVE-2019-7816 - Unrestricted Upload of File with Dangerous Type

Severity

99%

Complexity

99%

Confidentiality

165%

ColdFusion versions Update 2 and earlier, Update 9 and earlier, and Update 17 and earlier have a file upload restriction bypass vulnerability. Successful exploitation could lead to arbitrary code execution.

ColdFusion versions Update 2 and earlier, Update 9 and earlier, and Update 17 and earlier have a file upload restriction bypass vulnerability. Successful exploitation could lead to arbitrary code execution.

CVSS 3.0 Base Score 9.8. CVSS Attack Vector: network. CVSS Attack Complexity: low. CVSS Vector: (CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H).

CVSS 2.0 Base Score 9.9. CVSS Attack Vector: network. CVSS Attack Complexity: low. CVSS Vector: (AV:N/AC:L/Au:N/C:C/I:C/A:C).

Demo Examples

Unrestricted Upload of File with Dangerous Type

CWE-434

The following code intends to allow a user to upload a picture to the web server. The HTML code that drives the form on the user end has an input field of type "file".


               
</form>

Once submitted, the form above sends the file to upload_picture.php on the web server. PHP stores the file in a temporary location until it is retrieved (or discarded) by the server side code. In this example, the file is moved to a more permanent pictures/ directory.


               
}// Define the target location where the picture being// uploaded is going to be saved.// Move the uploaded file to the new location.
echo "The picture has been successfully uploaded.";
echo "There was an error uploading the picture, please try again.";

The problem with the above code is that there is no check regarding type of file being uploaded. Assuming that pictures/ is available in the web document root, an attacker could upload a file with the name:


               
malicious.php

Since this filename ends in ".php" it can be executed by the web server. In the contents of this uploaded file, the attacker could use:


               
?>
system($_GET['cmd']);

Once this file has been installed, the attacker can enter arbitrary commands to execute using a URL such as:


               
http://server.example.com/upload_dir/malicious.php?cmd=ls%20-l

which runs the "ls -l" command - or any other type of command that the attacker wants to specify.

Unrestricted Upload of File with Dangerous Type

CWE-434

The following code demonstrates the unrestricted upload of a file with a Java servlet and a path traversal vulnerability. The HTML code is the same as in the previous example with the action attribute of the form sending the upload file request to the Java servlet instead of the PHP code.


               
</form>

When submitted the Java servlet's doPost method will receive the request, extract the name of the file from the Http request header, read the file contents from the request and output the file to the local upload directory.


               
}
{...}
// output successful upload response HTML page
bw.close();
}
bw.flush();
...

As with the previous example this code does not perform a check on the type of the file being uploaded. This could allow an attacker to upload any executable file or other file with malicious code.

Additionally, the creation of the BufferedWriter object is subject to relative path traversal (CWE-22, CWE-23). Depending on the executing environment, the attacker may be able to specify arbitrary files to write to, leading to a wide variety of consequences, from code execution, XSS (CWE-79), or system crash.

Overview

Type

Adobe ColdFusion

First reported 5 years ago

2019-05-24 18:29:00

Last updated 5 years ago

2019-05-28 14:13:00

Affected Software

Adobe ColdFusion 11.0

11.0

Adobe ColdFusion 11.0 Update 1

11.0

Adobe ColdFusion 11.0 Update 10

11.0

Adobe ColdFusion 11.0 Update 11

11.0

Adobe ColdFusion 11.0 Update 12

11.0

Adobe ColdFusion 11.0 Update 13

11.0

Adobe ColdFusion 11.0 Update 14

11.0

Adobe ColdFusion 11.0 Update 15

11.0

Adobe ColdFusion 11.0 Update 16

11.0

Adobe ColdFusion 11.0 Update 17

11.0

Adobe ColdFusion 11.0 Update 2

11.0

Adobe ColdFusion 11.0 Update 3

11.0

Adobe ColdFusion 11.0 Update 4

11.0

Adobe ColdFusion 11.0 Update 5

11.0

Adobe ColdFusion 11.0 Update 6

11.0

Adobe ColdFusion 11.0 Update 7

11.0

Adobe ColdFusion 11.0 Update 8

11.0

Adobe ColdFusion 11.0 Update 9

11.0

Adobe ColdFusion 2016

2016

Adobe ColdFusion 2016 Update 1

2016

Adobe ColdFusion 2016 Update 2

2016

Adobe ColdFusion 2016 Update 3

2016

Adobe ColdFusion 2016 Update 4

2016

Adobe ColdFusion 2016 Update 5

2016

Adobe ColdFusion 2016 Update 6

2016

Adobe ColdFusion 2016 Update 7

2016

Adobe ColdFusion 2016 Update 8

2016

Adobe ColdFusion 2016 Update 9

2016

Adobe ColdFusion 2018

2018

Adobe ColdFusion 2018 Update 1

2018

Adobe ColdFusion 2018 Update 2

2018

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.