CVE-2025-10832
BaseFortify
Publication date: 2025-09-23
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-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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a SQL injection flaw in SourceCodester Pet Grooming Management Software version 1.0, specifically in the file fetch_product_details.php. It occurs because the 'barcode' parameter is not properly validated, allowing attackers to inject malicious SQL queries. This can enable unauthorized access to the database. [1]
How can this vulnerability impact me? :
Exploiting this vulnerability can lead to unauthorized modification, deletion, and exposure of sensitive data stored in the database. Attackers can remotely perform these actions without any privileges, potentially compromising the integrity and confidentiality of your data. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'barcode' parameter in the /admin/fetch_product_details.php endpoint for SQL injection. You can use tools like sqlmap or manual curl commands to check for SQL injection. For example, a curl command to test might be: curl -G 'http://targetsite/admin/fetch_product_details.php' --data-urlencode "barcode=' OR '1'='1" and observe if the response indicates SQL injection. Automated scanners like sqlmap can be run as: sqlmap -u "http://targetsite/admin/fetch_product_details.php?barcode=123" --batch --dbs to detect SQL injection vulnerabilities. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate steps to mitigate this vulnerability include applying input validation and sanitization on the 'barcode' parameter in fetch_product_details.php to prevent SQL injection. Use prepared statements or parameterized queries to handle database inputs securely. Additionally, restrict database user permissions to limit the impact of a potential injection. If a patch or update is available from the vendor, apply it promptly to fix the vulnerability. [1]