CVE-2025-10430
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-10430 is an SQL injection vulnerability in SourceCodester Pet Grooming Management Software version 1.0, specifically in the /admin/barcode.php file. The vulnerability occurs because the software does not properly validate or sanitize the 'id' parameter, allowing attackers to manipulate SQL queries. This improper handling lets attackers inject malicious SQL code, potentially leading to unauthorized access or manipulation of the database. [1, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow attackers to remotely access the database without authentication. They can modify, delete, or retrieve sensitive data, compromising the confidentiality, integrity, and availability of the system. This can lead to data breaches, loss of data integrity, and disruption of services. [2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'id' parameter in the /admin/barcode.php file for SQL injection flaws. One approach is to send crafted HTTP requests with SQL injection payloads to the vulnerable URL and observe the responses for database errors or unexpected behavior. Additionally, attackers may use Google hacking queries such as 'inurl:admin/barcode.php' to identify vulnerable targets. Specific commands could include using curl or tools like sqlmap to test the injection, for example: curl "http://target/admin/barcode.php?id=1' OR '1'='1" or sqlmap -u "http://target/admin/barcode.php?id=1" --batch. However, no explicit detection commands are provided in the resources. [3]
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 countermeasures have been identified. Additionally, applying strict input validation and sanitization on the 'id' parameter to prevent SQL injection is critical. Restricting access to the /admin/barcode.php file and monitoring for suspicious activity may also help reduce risk until a secure version or patch is available. [2, 3]