nuclei-templates/exposed-panels/prometheus-exporter-detect....

29 lines
823 B
YAML
Raw Normal View History

id: prometheus-exporter-detect
info:
name: Prometheus exporter detect
2020-10-02 16:33:03 +00:00
author: jarijaas
severity: info
description: Prometheus exporter detector
2021-04-06 07:25:57 +00:00
tags: panel
reference: https://github.com/prometheus/prometheus/wiki/Default-port-allocations
requests:
- method: GET
path:
2021-01-13 07:31:46 +00:00
- "{{BaseURL}}"
headers:
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:55.0) Gecko/20100101 Firefox/55
matchers-condition: and
matchers:
- type: word
words:
- Exporter # Exporters have "Exporter" in the page title (e.g, Node Exporter, Bind Exporter and so on)
- /metrics
condition: and
extractors: # Extract exporter name
- type: regex
part: body
name: exporter_name
group: 1
regex:
2020-10-01 21:18:22 +00:00
- "<title>(.*?)</title>"