nuclei-templates/http/misconfiguration/springboot/springboot-trace.yaml

41 lines
913 B
YAML

id: springboot-trace
info:
name: Detect Springboot Trace Actuator
author: that_juan_,dwisiswant0,wdahlenb
severity: low
description: View recent HTTP requests and responses
tags: misconfig,springboot,exposure
metadata:
max-request: 1
http:
- method: GET
path:
- "{{BaseURL}}/trace"
matchers-condition: and
matchers:
- type: word
part: body
words:
- '"timestamp"'
- '"info"'
- '"method"'
- '"path"'
condition: and
- type: word
part: header
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v1+json"
- "application/vnd.spring-boot.actuator.v2+json"
- "application/vnd.spring-boot.actuator.v3+json"
condition: or
- type: status
status:
- 200