CVE-2026-13541
Received Received - Intake

SQL Injection in Hospital Management System

Vulnerability report for CVE-2026-13541, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-29

Last updated on: 2026-06-29

Assigner: VulDB

Description

A weakness has been identified in itsourcecode Hospital Management System 1.0. This impacts an unknown function of the file /doctorchangepassword.php. Executing a manipulation of the argument newpassword can lead to sql injection. The attack may be performed from remote. The exploit has been made available to the public and could be used for attacks.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-29
Last Modified
2026-06-29
Generated
2026-06-29
AI Q&A
2026-06-29
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
itsourcecode hospital_management_system 1.0

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability is a SQL injection issue found in the Hospital Management System version 1.0, specifically in the file /doctorchangepassword.php. It arises from improper input sanitization of the 'newpassword' parameter, which allows an attacker who has authenticated access to inject malicious SQL code.

By manipulating the 'newpassword' argument, an attacker can execute unauthorized SQL commands on the database, potentially leading to unauthorized access, data leakage, data tampering, system control, or disruption of services.

The attack can be performed remotely after authentication, and exploits have been publicly disclosed. Tools like sqlmap can be used to demonstrate this vulnerability.

Impact Analysis

This vulnerability can have several serious impacts including unauthorized access to sensitive patient and hospital data, data leakage, and tampering with database records.

An attacker could gain control over the system or disrupt its normal operations, potentially causing service outages or manipulation of critical healthcare information.

Since the exploit requires authentication, it implies that an insider or someone with valid credentials could leverage this vulnerability to escalate their privileges or cause harm.

Detection Guidance

This SQL injection vulnerability in the /doctorchangepassword.php file can be detected by testing the 'newpassword' parameter for SQL injection flaws after authenticating with valid credentials.

Tools like sqlmap can be used to automate the detection of this vulnerability by targeting the 'newpassword' parameter to check for SQL injection.

  • Use sqlmap with authentication to test the parameter, for example: sqlmap -u "http://target/doctorchangepassword.php" --data="newpassword=TEST" --cookie="SESSION=your_session_cookie" --risk=3 --level=5
  • Manually test by injecting SQL payloads into the 'newpassword' parameter after login to observe any database errors or unexpected behavior.
Mitigation Strategies

Immediate mitigation steps include implementing prepared statements and parameterized queries to prevent SQL injection in the 'newpassword' parameter.

Input validation should be enforced to sanitize and validate the 'newpassword' input before processing.

Minimize database permissions for the application to limit the impact of a potential SQL injection attack.

Conduct regular security audits and code reviews to identify and fix similar vulnerabilities.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-13541. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart