CVE-2025-10825
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 |
|---|---|---|
| campcodes | online_beauty_parlor_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
Can you explain this vulnerability to me?
This vulnerability is a SQL Injection issue in the Campcodes Online Beauty Parlor Management System version 1.0. It occurs in the file /admin/view-appointment.php, specifically in the 'viewid' parameter. An attacker can manipulate this parameter to inject malicious SQL code, which can lead to unauthorized access or manipulation of the system's database. [1]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow an attacker to remotely access or manipulate the database of the Campcodes Online Beauty Parlor Management System. This could lead to unauthorized data disclosure, data modification, or other malicious actions that compromise the integrity and confidentiality of the system's 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 `viewid` parameter in the `/admin/view-appointment.php` file for SQL injection. You can use tools like sqlmap to automate detection, for example: `sqlmap -u "http://target/admin/view-appointment.php?viewid=1" --batch`. Alternatively, manual testing can be done by injecting SQL payloads into the `viewid` parameter and observing the response for SQL errors or unexpected behavior. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include applying input validation and parameterized queries (prepared statements) to the `viewid` parameter in `/admin/view-appointment.php` to prevent SQL injection. If a patch or update is available from the vendor, apply it promptly. Additionally, restrict access to the admin interface and monitor logs for suspicious activity related to the `viewid` parameter. [1]