mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-08 03:33:18 +08:00
22 lines
526 B
YAML
22 lines
526 B
YAML
id: phpmyadmin misconfiguration
|
|
info:
|
|
name: Sensitive data exposure
|
|
author: pussycat0x
|
|
severity: High
|
|
description: Unauthenticated phpmyadmin leads expose sensitive information
|
|
reference: https://www.exploit-db.com/ghdb/6997
|
|
tags: phpmyadmin,misconfiguration,
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}/phpmyadmin/sql.php?server=1"
|
|
redirects: true
|
|
matchers:
|
|
- type: word
|
|
words:
|
|
- "Database"
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|