CVE-2025-6608
BaseFortify
Publication date: 2025-06-25
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?
This vulnerability is an SQL injection flaw in the SourceCodester Best Salon Management System version 1.0, specifically in the file /panel/edit-services.php at the parameter editid. It occurs because the system does not properly neutralize special characters in the editid argument, allowing an attacker to inject malicious SQL code. This can be exploited remotely and may lead to unauthorized database manipulation. [1, 2]
How can this vulnerability impact me? :
The vulnerability can allow an attacker to steal sensitive information, manipulate or damage the database, and compromise the confidentiality, integrity, and availability of the system. Since it can be exploited remotely without authentication, it poses a significant security risk to affected systems. [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 file `/panel/edit-services.php` and testing the `editid` parameter for SQL injection. One method to identify potentially vulnerable targets is using Google dorking with the query `inurl:panel/edit-services.php`. For active testing, SQL injection detection tools or manual testing with payloads targeting the `editid` parameter can be used. Example command using curl to test for SQL injection: `curl -i "http://target/panel/edit-services.php?editid=1' OR '1'='1"`. Additionally, automated scanners that detect SQL injection vulnerabilities can be employed against this endpoint. [2, 1]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been documented for this vulnerability. The suggested immediate step is to replace the affected product with an alternative that is not vulnerable. Until a patch or fix is available, restricting access to the vulnerable endpoint and monitoring for exploitation attempts may help reduce risk. [2]