mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-02-05 02:03:35 +08:00
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,mysql,network,enum,discovery
|
|
|
|
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: 4b0a0048304602210096c635469334c49e43d7a94ed0a4ed34f64e2048245ccf00788ab82ec2eaff9b022100af933816e55309378e1016f90efb96a16ece023842b9ca019c46ed3ff4705a79:922c64590222798bb761d5b6d8e72950 |