53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
id: mysql-show-variables
|
|
|
|
info:
|
|
name: MySQL - Show Variables
|
|
author: DhiyaneshDk
|
|
severity: high
|
|
description: Attempts to show all variables on a MySQL server.
|
|
reference:
|
|
- https://nmap.org/nsedoc/scripts/mysql-variables.html
|
|
metadata:
|
|
max-request: 16
|
|
shodan-query: "port:3306"
|
|
tags: js,mysql,network,enum
|
|
|
|
javascript:
|
|
- 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"
|
|
User: "{{usernames}}"
|
|
Pass: "{{passwords}}"
|
|
Query: "show variables;"
|
|
|
|
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[].Variable_name'
|
|
# digest: 4b0a00483046022100db436fe9a644606ceaf3582c9060b533f3f19ccda67d48c3cda59e170ae1629d022100dcfdda5829b1cc31ff924d1274611b3103cc6360b51fa7885da45c93b06ddd8b:922c64590222798bb761d5b6d8e72950 |