mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-02 00:33:27 +08:00
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
id: mysql-show-databases
|
|
|
|
info:
|
|
name: MySQL - Show Databases
|
|
author: DhiyaneshDk
|
|
severity: high
|
|
reference:
|
|
- https://nmap.org/nsedoc/scripts/mysql-databases.html
|
|
metadata:
|
|
verified: true
|
|
max-request: 16
|
|
shodan-query: "port:3306"
|
|
tags: js,mysql,network,enum
|
|
javascript:
|
|
- pre-condition: |
|
|
isPortOpen(Host,Port);
|
|
code: |
|
|
let m = require('nuclei/mysql');
|
|
let c = m.MySQLClient();
|
|
let response = c.ExecuteQuery(Host,Port,User,Pass,Query);
|
|
Export(response);
|
|
|
|
args:
|
|
Host: "{{Host}}"
|
|
Port: "3306"
|
|
Query: "show databases;"
|
|
User: "{{usernames}}"
|
|
Pass: "{{passwords}}"
|
|
|
|
payloads:
|
|
usernames:
|
|
- root
|
|
- admin
|
|
- mysql
|
|
- test
|
|
passwords:
|
|
- root
|
|
- admin
|
|
- mysql
|
|
- test
|
|
attack: clusterbomb
|
|
|
|
stop-at-first-match: true
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- "success == true"
|
|
|
|
extractors:
|
|
- type: json
|
|
part: response
|
|
json:
|
|
- .Rows[] | .Database
|
|
# digest: 490a00463044022034f91bcda0f9492e0126ca59d24f759224cfb18cebe611d5bb52b53d79b31f33022045334fbdcccdd05926ee37ec1c7372429c317905f6cc5b3c4aac427511c27f16:922c64590222798bb761d5b6d8e72950 |