nuclei-templates/misconfiguration/phpmyadmin/phpmyadmin-sql.php-server.yaml

29 lines
751 B
YAML
Raw Normal View History

id: phpmyadmin-misconfiguration
2021-06-22 15:10:53 +00:00
info:
name: Sensitive data exposure
author: pussycat0x
severity: high
2021-06-23 19:56:51 +00:00
description: Unauthenticated phpmyadmin leads to exposure of sensitive information
2021-06-22 15:10:53 +00:00
reference: https://www.exploit-db.com/ghdb/6997
tags: phpmyadmin,misconfig
2021-06-22 15:10:53 +00:00
requests:
- method: GET
path:
2021-06-23 19:56:51 +00:00
- "{{BaseURL}}/phpmyadmin/index.php?db=information_schema"
- "{{BaseURL}}/phpMyAdmin/index.php?db=information_schema"
2021-11-11 16:34:45 +00:00
stop-at-first-match: true
matchers-condition: and
2021-06-22 15:10:53 +00:00
matchers:
2021-06-23 16:07:14 +00:00
- type: word
2021-06-22 15:10:53 +00:00
words:
2021-06-23 19:56:51 +00:00
- "var db = 'information_schema';"
- "var opendb_url = 'db_structure.php';"
condition: and
2021-11-11 16:34:45 +00:00
2021-06-22 15:10:53 +00:00
- type: status
status:
2021-06-23 19:56:51 +00:00
- 200