CVE-2025-10428
BaseFortify
Publication date: 2025-09-15
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 |
|---|---|---|
| mayurik | pet_grooming_management_software | 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?
This vulnerability exists in SourceCodester Pet Grooming Management Software 1.0, specifically in the Setting Handler component within the file /admin/seo_setting.php. It is caused by improper handling of the argument website_image, which allows an attacker to upload files without restrictions. This means attackers can upload potentially dangerous or malicious files to the server remotely without needing authentication, which can compromise the system's confidentiality, integrity, and availability. [1, 2]
How can this vulnerability impact me? :
The vulnerability can allow attackers to upload malicious files to the server, potentially leading to server privilege escalation. This can result in unauthorized access, data compromise, or disruption of services. Since the exploit can be performed remotely and easily, it poses a significant risk to affected systems. [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 file /admin/seo_setting.php on the SourceCodester Pet Grooming Management Software version 1.0. One method is to use Google dorking with the query 'inurl:admin/seo_setting.php' to identify potentially vulnerable targets. Additionally, monitoring web server logs for suspicious file upload attempts to the /admin/seo_setting.php endpoint can help detect exploitation attempts. Specific commands could include using curl or wget to test file upload functionality on the endpoint, for example: curl -X POST -F "website_image=@malicious_file.php" http://targetsite.com/admin/seo_setting.php -v to see if unrestricted upload is allowed. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the /admin/seo_setting.php file to prevent unauthorized uploads. Since no known countermeasures or patches are reported, it is recommended to replace the affected software with an alternative product. Additionally, implementing strict file upload validation and filtering on the server side, restricting file types and sizes, and monitoring for suspicious upload activity can help reduce risk until a permanent fix is applied. [1]