CVE-2026-26886
SQL Injection in Simple Online Men's Salon Management System
Publication date: 2026-03-03
Last updated on: 2026-03-04
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| oretnom23 | simple_online_men's_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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': "The vulnerability is an SQL injection found in the Simple Online Men's Salon Management System v1.0 by Sourcecodester. It exists in the file `/admin/services/manage_service.php`, specifically in the `id` parameter of a GET request."}, {'type': 'paragraph', 'content': 'An attacker can exploit this by injecting malicious SQL code through the `id` parameter, such as using a UNION-based SQL injection payload to retrieve sensitive information like the database name.'}, {'type': 'paragraph', 'content': 'This allows unauthorized access to the database contents, potentially exposing sensitive data stored within the system.'}] [1]
How can this vulnerability impact me? :
[{'type': 'paragraph', 'content': "This SQL injection vulnerability can lead to unauthorized data leakage from the system's database."}, {'type': 'list_item', 'content': 'Attackers can retrieve sensitive information such as database names and potentially other confidential data.'}, {'type': 'list_item', 'content': 'It may allow attackers to manipulate or access data without proper authorization.'}, {'type': 'list_item', 'content': 'The compromise of database contents can lead to data breaches, loss of customer trust, and potential operational disruptions.'}] [1]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This SQL injection vulnerability can be detected by sending crafted HTTP GET requests to the vulnerable endpoint and observing the response for SQL errors or unexpected data.'}, {'type': 'list_item', 'content': "Send a GET request to `/msms/admin/services/manage_service.php` with the `id` parameter manipulated to test for SQL injection, for example: `/msms/admin/services/manage_service.php?id=-6' union select 1,database(),3,4,5,6,7--+`."}, {'type': 'list_item', 'content': 'Use tools like curl or a web proxy to send the above request and check if the response contains the database name or other unexpected data.'}, {'type': 'list_item', 'content': 'Monitor network traffic for suspicious GET requests targeting the `id` parameter in `/admin/services/manage_service.php` that include SQL injection payloads.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
I don't know