InfluxDB Pentesting
InfluxDB is a time series database written in Go. A default port is 8086.
# User enumeration
curl http://<target-ip>:8086/debug/requests
Copied!
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.db
Copied!References
Last updated
