mirror of
https://github.com/lunchcat/sif.git
synced 2026-08-03 09:11:23 -07:00
feat(modules): add loki, jaeger and zipkin exposure modules (#248)
add recon modules for unauthenticated observability backends that leak service topology and log data: loki serves its log query api when auth_enabled is false (401 otherwise), and jaeger and zipkin ship no authentication so a reachable instance exposes the service map and trace data.
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# Grafana Loki Log API Exposure Detection Module
|
||||
|
||||
id: loki-api-exposure
|
||||
info:
|
||||
name: Grafana Loki Log API Exposure
|
||||
author: sif
|
||||
severity: high
|
||||
description: Detects a Grafana Loki deployment with auth_enabled disabled that serves log labels and content to anyone over its query api
|
||||
tags: [loki, grafana, logs, log-aggregation, observability, exposure, unauth, api, recon]
|
||||
|
||||
type: http
|
||||
|
||||
http:
|
||||
method: GET
|
||||
paths:
|
||||
- "{{BaseURL}}/loki/api/v1/labels"
|
||||
|
||||
matchers:
|
||||
- type: regex
|
||||
part: body
|
||||
regex:
|
||||
- '"status"\s*:\s*"success"'
|
||||
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- "\"data\""
|
||||
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
||||
|
||||
extractors:
|
||||
- type: regex
|
||||
name: loki_label
|
||||
part: body
|
||||
regex:
|
||||
- '"data"\s*:\s*\[\s*"([^"]+)"'
|
||||
group: 1
|
||||
Reference in New Issue
Block a user