You need to upload two different files to solve this lab.
Lab: Web shell upload via extension blacklist bypass
This lab contains a vulnerable image upload function. Certain file extensions are blacklisted, but this defense can be bypassed due to a fundamental flaw in the configuration of this blacklist.
To solve the lab, upload a basic PHP web shell, then use it to exfiltrate the contents of the file /home/carlos/secret. Submit this secret using the button provided in the lab banner.
You can log in to your own account using the following credentials: wiener:peter
Hint
Solution
- 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
GETrequest to/files/avatars/<YOUR-IMAGE>. Send this request to Burp Repeater. -
On your system, create a file called
exploit.phpcontaining 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 not allowed to upload files with a
.phpextension. -
In Burp's proxy history, find the
POST /my-account/avatarrequest that was used to submit the file upload. In the response, notice that the headers reveal that you're talking to an Apache server. Send this request to Burp Repeater. -
In Burp Repeater, go to the tab for the
POST /my-account/avatarrequest and find the part of the body that relates to your PHP file. Make the following changes:-
Change the value of the
filenameparameter to.htaccess. -
Change the value of the
Content-Typeheader totext/plain. -
Replace the contents of the file (your PHP payload) with the following Apache directive:
AddType application/x-httpd-php .l33tThis maps an arbitrary extension (
.l33t) to the executable MIME typeapplication/x-httpd-php. As the server uses themod_phpmodule, it knows how to handle this already.
-
Change the value of the
- Send the request and observe that the file was successfully uploaded.
- Use the back arrow in Burp Repeater to return to the original request for uploading your PHP exploit.
-
Change the value of the
filenameparameter fromexploit.phptoexploit.l33t. Send the request again and notice that the file was uploaded successfully. -
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.l33tand send the request. Observe that Carlos's secret was returned in the response. Thanks to our malicious.htaccessfile, the.l33tfile was executed as if it were a.phpfile. - Submit the secret to solve the lab.
Community solutions
Intigriti
Register for free to track your learning progress
-
Practise exploiting vulnerabilities on realistic targets.
-
Record your progression from Apprentice to Expert.
-
See where you rank in our Hall of Fame.
Already got an account? Login here