CVE-2025-6605
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?
CVE-2025-6605 is a critical SQL injection vulnerability in SourceCodester Best Salon Management System 1.0, specifically in the /panel/edit-staff.php file. It occurs due to improper handling of the 'editid' parameter, allowing an attacker to inject malicious SQL code remotely. This flaw enables attackers to manipulate the database by exploiting inadequate neutralization of special characters, potentially compromising the system's confidentiality, integrity, and availability. [1, 2]
How can this vulnerability impact me? :
This vulnerability can allow an attacker to remotely execute arbitrary SQL commands on the affected system, leading to unauthorized access to sensitive information, data theft, data modification, or destruction of database contents. It can compromise the confidentiality, integrity, and availability of the system. Exploitation may result in significant damage to the underlying database and overall system functionality. [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-staff.php and testing the editid parameter for SQL injection. One method is to use Google dorking with the query "inurl:panel/edit-staff.php" to identify potentially vulnerable targets. For direct testing, you can use curl or similar tools to send crafted requests to the editid parameter and observe for SQL injection behavior. Example command: curl -v "http://targetsite.com/panel/edit-staff.php?editid=1' OR '1'='1". Additionally, using automated SQL injection detection tools against this parameter can help identify the vulnerability. [1]
What immediate steps should I take to mitigate this vulnerability?
No known mitigations or countermeasures have been published for this vulnerability. The recommended immediate step is to replace the affected software (SourceCodester Best Salon Management System version 1.0) with an alternative product that is not vulnerable. Additionally, restricting access to the vulnerable endpoint and monitoring for suspicious activity may help reduce risk until a fix or patch is available. [1]