CVE-2025-10396
BaseFortify
Publication date: 2025-09-14
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-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a critical SQL injection flaw in SourceCodester Pet Grooming Management Software version 1.0, specifically in the /admin/edit_role.php file. It occurs because the software does not properly validate or neutralize the 'ID' parameter, allowing attackers to inject malicious SQL code. This can be exploited remotely without authentication, enabling attackers to manipulate the database by executing unauthorized SQL commands. [1, 2]
How can this vulnerability impact me? :
Exploiting this vulnerability can lead to unauthorized access to the database, allowing attackers to retrieve sensitive information, modify or delete data, and compromise the confidentiality, integrity, and availability of the affected system. Since the attack can be launched remotely without authentication, it poses a significant security risk to users of the affected software. [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/edit_role.php` in the SourceCodester Pet Grooming Management Software version 1.0 and testing the 'id' parameter for SQL injection. One method is to use Google dorking with the query `inurl:admin/edit_role.php` to identify potentially vulnerable targets. For direct testing, you can use tools like curl or sqlmap to send crafted requests to the 'id' parameter and observe if SQL injection is possible. Example command with sqlmap: `sqlmap -u "http://target/admin/edit_role.php?id=1" --batch` to test for SQL injection automatically. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product, as no known mitigations or patches have been documented. Additionally, restricting access to the vulnerable endpoint `/admin/edit_role.php` via network controls or web application firewalls may reduce exposure. Applying input validation and sanitization on the 'id' parameter, if possible, can help prevent exploitation until a permanent fix or replacement is implemented. [1, 2]