CVE-2025-10431
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-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?
CVE-2025-10431 is a SQL injection vulnerability in SourceCodester Pet Grooming Management Software version 1.0. It occurs because the software does not properly validate or sanitize user input, specifically the 'id' parameter in the /admin/ajax_represent.php file. This allows attackers to manipulate SQL queries by injecting malicious code, potentially altering the intended database commands. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely execute unauthorized SQL queries on your database. This can compromise the confidentiality, integrity, and availability of your data, potentially leading to data leaks, data corruption, or denial of service. Since the exploit is publicly available and easy to launch, 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 script /admin/ajax_represent.php and testing the 'id' parameter for SQL injection. One method is to use Google dorking with the query 'inurl:admin/ajax_represent.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 curl: curl -G 'http://target/admin/ajax_represent.php' --data-urlencode "id=1' OR '1'='1". Alternatively, sqlmap can be used as: sqlmap -u "http://target/admin/ajax_represent.php?id=1" --batch --risk=3 --level=5 to automate detection. [2, 1]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been documented for this vulnerability. The suggested immediate step is to replace the affected software (SourceCodester Pet Grooming Management Software version 1.0) with an alternative product that is not vulnerable. Additionally, restricting access to the vulnerable script and monitoring for suspicious activity may help reduce risk until a fix or replacement is implemented. [2]