nuclei-templates/misconfiguration/springboot/springboot-metrics.yaml

36 lines
903 B
YAML
Raw Normal View History

2021-08-04 16:47:33 +00:00
id: springboot-metrics
2021-08-04 16:38:47 +00:00
info:
2021-08-04 16:47:33 +00:00
name: Detect Springboot metrics Actuator
2021-08-04 16:38:47 +00:00
author: pussycat0x
severity: low
description: Additional routes may be displayed
tags: springboot,disclosure
requests:
- method: GET
path:
- "{{BaseURL}}/metrics"
- "{{BaseURL}}/actuator/metrics"
matchers-condition: and
matchers:
- type: word
part: body
words:
- "mem"
- "mem.free"
- "processors"
- "instance.uptime"
- "systemload.average"
- "nonheap.init"
- "heap.committed"
condition: and
- type: status
status:
- 200
- type: word
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v1+json"
condition: or
2021-08-04 16:47:33 +00:00
part: header