CVE-2025-14990
SQL Injection in Campcodes Beauty Parlor Admin Panel Allows Remote Exploit
Publication date: 2025-12-21
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 | complete_online_beauty_parlor_management_system | 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?
CVE-2025-14990 is a critical SQL injection vulnerability in Campcodes Complete Online Beauty Parlor Management System version 1.0, specifically in the /admin/view-appointment.php file. The vulnerability occurs because the 'viewid' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code. This enables remote attackers to execute arbitrary SQL commands 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 severe impacts including unauthorized access to sensitive data, modification or deletion of data, and disruption of system availability. Attackers can exploit it remotely without authentication to compromise the confidentiality, integrity, and availability of the system. This may lead to data breaches, loss of trust, operational downtime, and potential financial or reputational damage. [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 'viewid' parameter in the /admin/view-appointment.php file for SQL injection. Example payloads include boolean-based injections like `viewid=5' AND 5949=5949 AND 'AEFq'='AEFq`, time-based injections such as `viewid=5' AND (SELECT 9344 FROM (SELECT(SLEEP(5)))syeF) AND 'JNuH'='JNuH`, and UNION-based queries like `viewid=5' UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,CONCAT(...)`. Tools like sqlmap can be used to automate detection and exploitation attempts. Additionally, Google dorking with queries such as `inurl:admin/view-appointment.php` can help identify vulnerable targets on the network. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Use prepared statements with parameter binding to prevent SQL injection by separating SQL code from user input. 2) Implement 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 like root or admin for routine operations. 4) Conduct regular security audits of code and systems to detect and fix vulnerabilities promptly. Since no known mitigations or countermeasures are identified for this specific product, replacing the affected component with an alternative product is also recommended. [1, 3]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
This SQL injection vulnerability allows unauthorized access, modification, and exposure of sensitive data, which can lead to violations of data protection regulations such as GDPR and HIPAA. Exploitation of this flaw compromises confidentiality, integrity, and availability of personal and sensitive information, potentially resulting in non-compliance with these standards that require protection of such data. [1, 2, 3]