CVE-2026-14774
Deferred Deferred - Pending Action

SQL Injection in Hospital Management System 1.0

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

Publication date: 2026-07-05

Last updated on: 2026-07-06

Assigner: VulDB

Description

A vulnerability was determined in itsourcecode Hospital Management System 1.0. This impacts an unknown function of the file /paymentdischarge.php. This manipulation of the argument patientid causes sql injection. The attack may be initiated remotely. The exploit has been publicly disclosed and may be utilized.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-05
Last Modified
2026-07-06
Generated
2026-07-26
AI Q&A
2026-07-06
EPSS Evaluated
2026-07-24
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-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.
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 Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability exists in the itsourcecode Hospital Management System 1.0, specifically in an unknown function within the file /paymentdischarge.php. It involves manipulation of the argument patientid, which leads to an SQL injection vulnerability. This means an attacker can inject malicious SQL code through the patientid parameter.

The attack can be initiated remotely, and the exploit has been publicly disclosed, meaning that information on how to exploit this vulnerability is available.

Detection Guidance

This vulnerability can be detected by testing the 'patientid' parameter in the /paymentdischarge.php file for SQL injection flaws. One common method is to send specially crafted input that triggers SQL errors or unexpected behavior.

For example, you can use error-based SQL injection payloads such as using the EXTRACTVALUE function to cause database errors that reveal injection points.

A sample command using curl to test the vulnerability might be:

  • curl -G "http://target/paymentdischarge.php" --data-urlencode "patientid=1' AND EXTRACTVALUE(1, CONCAT(0x7e, (SELECT database()), 0x7e))-- -"

If the response contains database error messages or unexpected output, it indicates the presence of SQL injection.

Additionally, using automated tools like sqlmap targeting the patientid parameter can help detect and confirm the vulnerability.

Impact Analysis

This SQL injection vulnerability can allow an attacker to manipulate the database queries executed by the Hospital Management System. Potential impacts include unauthorized access to sensitive patient data, modification or deletion of records, and disruption of system availability.

Because the attack can be performed remotely, it increases the risk of exploitation without physical access to the system.

Compliance Impact

The SQL injection vulnerability in the Hospital Management System 1.0 allows unauthorized database access, data leakage, tampering, and potential system control. Since this system handles patient data, exploitation of this vulnerability could lead to unauthorized disclosure or alteration of sensitive personal health information.

Such unauthorized access and data breaches can result in non-compliance with regulations like GDPR and HIPAA, which mandate the protection of personal and health information. Failure to secure patient data adequately may lead to legal and regulatory consequences under these standards.

Mitigation Strategies

Immediate mitigation steps include:

  • Implement prepared statements with parameterized queries to prevent SQL injection.
  • Validate and sanitize all user inputs, especially the 'patientid' parameter, to ensure only expected data is processed.
  • Minimize database user permissions to limit the impact of a potential injection.
  • Conduct regular security audits and code reviews focusing on input handling and database interactions.

Since exploitation requires authentication, also review and strengthen authentication and access controls.

Chat Assistant

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

EPSS Chart