35 lines
702 B
YAML
35 lines
702 B
YAML
id: influxdb-detect
|
|
|
|
info:
|
|
name: InfluxDB Detect
|
|
author: pikpikcu,idealphase
|
|
severity: info
|
|
description: Open Source Time Series Database, high-speed read and write database.
|
|
metadata:
|
|
shodan-query: http.title:"InfluxDB - Admin Interface"
|
|
reference:
|
|
- https://www.influxdata.com/
|
|
tags: tech,influxdb
|
|
|
|
requests:
|
|
- method: GET
|
|
path:
|
|
- "{{BaseURL}}"
|
|
|
|
matchers-condition: and
|
|
matchers:
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "<title>InfluxDB - Admin Interface</title>"
|
|
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
extractors:
|
|
- type: regex
|
|
group: 1
|
|
regex:
|
|
- '<b>InfluxDB<\/b> v([\d.]+)<\/p>'
|