File path traversal, validation of file extension with null byte bypass¶
Description¶
This lab contains a file path traversal vulnerability in the display of product images. The application validates that the supplied filename ends with the expected file extension.
Reproduction and proof of concept¶
Use Burp Suite to intercept and modify a request that fetches a product image.
Modify the
filename
parameter, giving it the value:../../../etc/passwd%00.png
The response contains the contents of the
/etc/passwd
file.
Exploitability¶
An attacker will need to retrieve the contents of the /etc/passwd
file.
Last update:
2025-05-12 14:16