InfluxDB Pentesting
InfluxDB is a time series database written in Go. A default port is 8086.
Enumeration
# User enumeration
curl http://<target-ip>:8086/debug/requestsConnect
influx -host 10.0.0.1 -port 8086
influx -host 10.0.0.1 -port 8086 -database <database>
influx -host 10.0.0.1 -port 8086 -username <username> -password <password>
# Import db file
influx -path example.dbAuthentication Bypass (CVE-2019-20933) version ≤ 1.7.6
Automation
Manual
Commands
References
Last updated