CVE-2025-14664
BaseFortify
Publication date: 2025-12-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 |
|---|---|---|
| campcodes | supplier_management_system | 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
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implement prepared statements with parameter binding to separate SQL code from user input. 2) Apply strict input validation and filtering to ensure inputs conform to expected formats. 3) Limit database user permissions to the minimum necessary, avoiding use of high-privilege accounts for routine operations. 4) Conduct regular security audits to detect and fix vulnerabilities promptly. If possible, consider replacing the affected product with an alternative solution. [1, 2]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows unauthorized access, modification, and exposure of sensitive data through SQL injection, which can lead to breaches of confidentiality and integrity. Such data breaches can result in non-compliance with common standards and regulations like GDPR and HIPAA that require protection of personal and sensitive information. Therefore, exploitation of this vulnerability could negatively impact compliance with these regulations by exposing sensitive data and failing to ensure data security. [1, 2, 3]
Can you explain this vulnerability to me?
CVE-2025-14664 is a critical SQL injection vulnerability in Campcodes Supplier Management System version 1.0, specifically in the file /admin/view_unit.php. The vulnerability arises from improper handling and inadequate validation of the chkId[] parameter, which is used directly in SQL queries without proper sanitization. This allows attackers to inject malicious SQL code remotely without authentication, potentially leading to unauthorized database access, data leakage, modification, deletion, or full system compromise. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can have serious impacts including unauthorized access to sensitive data, data leakage, unauthorized modification or deletion of data, and potential full system compromise or service disruption. Since it can be exploited remotely without authentication, attackers can easily exploit it to compromise system confidentiality, integrity, and availability, threatening business continuity and system security. [1, 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 vulnerable URL /admin/view_unit.php for SQL injection via the chkId[] parameter. A common method is to use sqlmap targeting the parameter, for example: sqlmap -u "http://target/Supply_Management_System/admin/view_unit.php" --data "chkId[]=2" --batch. Additionally, a time-based blind SQL injection payload such as chkId[]=2' AND (SELECT 4060 FROM (SELECT(SLEEP(5)))MZaY) AND 'mgeM'='mgeM can be used to confirm the injection point by observing delayed responses. [1]