CVE-2025-7175
BaseFortify
Publication date: 2025-07-08
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| fabian | e-commerce_site | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-434 | The product allows the upload or transfer of dangerous file types that are automatically processed within its environment. |
| CWE-284 | The product does not restrict or incorrectly restricts access to a resource from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-7175 is a critical vulnerability in code-projects E-Commerce Site 1.0, specifically in the /admin/users_photo.php file. The vulnerability arises because the photo upload functionality does not properly restrict or validate the uploaded file types, allowing an attacker to upload arbitrary files, including malicious ones. This can lead to remote code execution or compromise of the server. [1, 2]
How can this vulnerability impact me? :
This vulnerability can allow an attacker to remotely upload malicious files to the server, potentially leading to remote code execution, system compromise, and loss of confidentiality, integrity, and availability of the affected system. Since the exploit is publicly available and easy to exploit without authentication, it poses a significant security risk. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable endpoint /admin/users_photo.php on your web server. You can use web scanning tools or simple curl commands to test if the endpoint is accessible. Additionally, Google dorking with queries like "inurl:admin/users_photo.php" can help identify vulnerable targets. To detect exploitation attempts, monitor web server logs for unusual POST requests to /admin/users_photo.php with file upload activity. Example command to check endpoint availability: curl -I http://yourserver/admin/users_photo.php [2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the /admin/users_photo.php file to prevent unauthorized uploads. Since no known countermeasures or patches are reported, it is recommended to replace the affected component with an alternative product or apply strict file upload validation and filtering if possible. Monitoring and blocking suspicious upload attempts can also help reduce risk until a permanent fix is applied. [2]