Add files via upload
parent
99d0461177
commit
6e2816be3e
|
@ -0,0 +1,24 @@
|
|||
id: kubernetes-exposed-metrics
|
||||
info:
|
||||
name: Detect Kubernetes Exposed Metrics
|
||||
author: pussycat0x
|
||||
severity: low
|
||||
description: Information Disclosure of Garbage Collection
|
||||
tags: kubernetes,exposure, metrics
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}:8080/metrics"
|
||||
matchers-condition: and
|
||||
matchers:
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- "namespace"
|
||||
- "HELP"
|
||||
- "TYPE"
|
||||
- "kube"
|
||||
condition: and
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
|
@ -0,0 +1,27 @@
|
|||
id: node-exporter-metrics
|
||||
info:
|
||||
name: Detect Node Exporter Metrics
|
||||
author: pussycat0x
|
||||
severity: low
|
||||
description: Information Disclosure of Garbage Collection
|
||||
tags: node,exposure, metrics
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}:9100/metrics"
|
||||
matchers-condition: and
|
||||
matchers:
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- "go_goroutines"
|
||||
- "HELP"
|
||||
- "gauge"
|
||||
- "node_cooling_device"
|
||||
- "node_network"
|
||||
- "boot"
|
||||
- "TYPE go_goroutines gauge"
|
||||
condition: and
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
|
@ -0,0 +1,25 @@
|
|||
id: overview-kubernetes-resource-report
|
||||
info:
|
||||
name: Detect Overview Kubernetes Resource Report
|
||||
author: pussycat0x
|
||||
severity: medium
|
||||
description: Information Disclosure of Kubernetes Resource Report
|
||||
tags: Kubernetes,exposure
|
||||
requests:
|
||||
- method: GET
|
||||
path:
|
||||
- "{{BaseURL}}:9100/metrics"
|
||||
matchers-condition: and
|
||||
matchers:
|
||||
- type: word
|
||||
part: body
|
||||
words:
|
||||
- "<title>Overview - Kubernetes Resource Report</title>"
|
||||
- "<title>Overview - Kubernetes Resource Report</title>"
|
||||
- "Pods"
|
||||
- "Worker Nodes"
|
||||
- "Applications"
|
||||
condition: and
|
||||
- type: status
|
||||
status:
|
||||
- 200
|
Loading…
Reference in New Issue