40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
id: mysql-info
|
|
|
|
info:
|
|
name: MySQL Info - Enumeration
|
|
author: pussycat0x
|
|
severity: info
|
|
description: |
|
|
Connects to a MySQL server and prints information such as the protocol and version numbers
|
|
reference:
|
|
- https://nmap.org/nsedoc/scripts/mysql-info.html
|
|
metadata:
|
|
max-request: 1
|
|
shodan-query: "port:3306"
|
|
tags: js,mssql,network,enum
|
|
|
|
javascript:
|
|
- pre-condition: |
|
|
isPortOpen(Host,Port);
|
|
code: |
|
|
var m = require("nuclei/mysql");
|
|
var c = m.MySQLClient();
|
|
var response = c.FingerprintMySQL(Host,Port);
|
|
Export(response);
|
|
|
|
args:
|
|
Host: "{{Host}}"
|
|
Port: "3306"
|
|
|
|
matchers:
|
|
- type: dsl
|
|
dsl:
|
|
- "success == true"
|
|
|
|
extractors:
|
|
- type: json
|
|
json:
|
|
- '"Version: "+ .Version '
|
|
- '"TLS "+ .TLS'
|
|
- '"Transport: "+ .Transport '
|
|
# digest: 4a0a004730450221009be5b156071a03d67fed95337ba696d9dcc9e8890fa460fae66a3b660b37f19d02204c0b4711cd08b8accea895779b0edae1c77426925850e2004acbb5a95f41c730:922c64590222798bb761d5b6d8e72950 |