CVE-2025-6862
BaseFortify
Publication date: 2025-06-29
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 | best_salon_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?
CVE-2025-6862 is a critical SQL injection vulnerability in SourceCodester Best Salon Management System version 1.0, specifically in the file /panel/edit_plan.php at the parameter 'editid'. This parameter is improperly handled, allowing an attacker to inject malicious SQL commands remotely. Exploiting this flaw can lead to unauthorized access to or manipulation of the backend database, such as stealing sensitive information or damaging data. [1, 2]
How can this vulnerability impact me? :
This vulnerability can allow remote attackers to execute arbitrary SQL commands on the affected system, potentially leading to unauthorized data access, data theft, data manipulation, and disruption of system availability. It compromises the confidentiality, integrity, and availability of the system's data and services. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable endpoint /panel/edit_plan.php and testing the 'editid' parameter for SQL injection. One method is to use Google dorking with the query "inurl:panel/edit_plan.php" to identify potentially vulnerable targets. For direct testing, you can use tools like sqlmap or manual curl commands to inject SQL payloads into the 'editid' parameter and observe the response for SQL errors or unexpected behavior. Example command: curl -G "http://target/panel/edit_plan.php" --data-urlencode "editid=1' OR '1'='1" [2]
What immediate steps should I take to mitigate this vulnerability?
No known mitigations or countermeasures have been documented for this vulnerability. The suggested immediate step is to replace the affected component (SourceCodester Best Salon Management System 1.0) with an alternative product that does not contain this vulnerability. Additionally, restricting access to the vulnerable endpoint and monitoring for suspicious activity may help reduce risk until a fix or patch is available. [2]