Thursday, 2024-03-28, 12:24 PM
Welcome Guest

Sec_rity without U

Main | remote file upload | BigBadWof - Forum | Registration | Login | RSS
[ New messages · Members · Forum rules · Search · RSS ]
  • Page 1 of 1
  • 1
Forum » Hacks, Exploits & discussions » Shells & Exploits » remote file upload | BigBadWof (wordpress user photo component remote file upload)
remote file upload | BigBadWof
BigBadWolfDate: Thursday, 2012-01-26, 10:24 PM | Message # 1
Private
Group: Moderators
Messages: 19
Awards: 1
Reputation: 0
Status: Offline
# Tested on: *nix , Windows

I. Product Description


User Photo is a WordPress component that allows a user to associate a photo with her account and for this photo to be displayed in posts and comments.


II. Vulnerability description


When a photo is uploaded, it is only partially validated and it is possible to upload a backdoor on the server hosting WordPress. This backdoor can be called (executed) even if the photo has not been yet approved.


III. Analysis


1. Image type validation


When a file is uploaded, its type is validated. Only the following types are accepted:
Quote

$userphoto_validtypes = array(
"image/jpeg" => true,
"image/pjpeg" => true,
"image/gif" => true,
"image/png" => true,
"image/x-png" => true
);


The type is validated by the following code:

Quote
if(@!$userphoto_validtypes[$_FILES['userphoto_image_file']['type']])
$error = sprintf(__("The uploaded file type “%s” is not allowed.", 'user-photo'), $_FILES['userphoto_image_file']['type']);

This code verifies the MIME type of the uploaded file. A navigator infers the MIME type from the file itself or from its extension but it is possible to intercept the HTTP request and change it (using a proxy such as WebScarab). This way, any file can be uploaded as if it were an image. The HTTP header to change is Content-type:

Content-type: image/gif

2. Image resizing


When a photo (an image) is uploaded, its size is checked. If it is too big, it is resized. To avoid this resizing, the uploaded file has to look like a small image. The verification of the size of the image is done with code such as:
Quote

$imageinfo = getimagesize($tmppath);


In the case of GIF, this PHP function simply looks at the beginning of the GIF header and extracts the size of the image. A GIF header starts with:
Quote

Offset Length Contents
0 3 bytes "GIF"
3 3 bytes "87a" or "89a"
6 2 bytes <Logical screen width in little-endian byte order>
8 2 bytes <Logical screen height in little-endian byte order>

getimagesize ignores the remaining of the binary data. It is thus easy to create a file that looks like a small GIF image but that is in fact something else.

3. PHP file


A PHP file can contain binary data. This data are reflected on the output steam without interpretation. Only data between <?php and ?> are interpreted as PHP code (see http://www.php.net/manual/en/language.basic-syntax.phpmode.php ). Using this characteristic and the previous point, it is thus possible to construct a file that looks like a small GIF image but that is in fact a PHP file. For example (in hexadecimal):

47 49 46 38 39 61 14 00 14 00 3C 3F 70 68 70 20 70 68 70 69 6E 66 6F 28 29 3B 20 3F 3E

This file is recognized as a GIF image with a width and a height of 20 pixels and also as a PHP file containing a call to phpinfo(). Using the same technic, it is possible to upload a backdoor.

4. Uploading


Once uploaded, the PHP file is always located at the same place:

Quote
wp-content/uploads/userphoto/alice.php

where alice is the login name (nickname) of the user uploading the file.

Important: This file is present even if it has not yet been approved by the moderator.

5. Limitation


Since the PHP file begins with a fake GIF header, this header will be output for every response. In practice, this is not really a problem: it can be simply ignored (in the case of a backdoor outputting HTML) or manually removed (in the case of the downloading of file). In some cases (for example when images are dynamically returned), a backdoor has to be slightly modified to avoid outputting two GIF headers.

6. Special case

In some installations, PHP files are interpreted as Unicode (16 bits). Since the beginning of the GIF header is 16-bit aligned, it is not an issue. The PHP code has to be written in Unicode.

7. Other concerns


This component contains also a XSS vulnerability located in the same lines of code.


IV. Versions affected


Version 0.9.4 (latest version as of January 2011).

Other versions were not tested.


V. Impact


The exact impact depends of the configuration of the web server and of the operating system:

- In the worst case, if Apache is running as root or as an Administrator, the server is compromised (owned).

- If the Apache server is running as a dedicated low privilege user, the backdoor will have limited access. Most of the time, the backdoor will have read access but no write access except in very specific places. To compromise the server, another vulnerability is necessary (escalation).
 
Forum » Hacks, Exploits & discussions » Shells & Exploits » remote file upload | BigBadWof (wordpress user photo component remote file upload)
  • Page 1 of 1
  • 1
Search: