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

39 lines
840 B
YAML
Raw Normal View History

2021-04-28 10:20:24 +00:00
id: springboot-httptrace
info:
name: Detect Springboot httptrace
2021-06-09 12:20:56 +00:00
author: that_juan_,dwisiswant0,wdahlenb
2021-04-28 10:20:24 +00:00
severity: low
description: View recent HTTP requests and responses
2021-08-06 15:32:50 +00:00
tags: springboot,exposure
2021-04-28 10:20:24 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}/httptrace"
2021-04-28 10:20:24 +00:00
- "{{BaseURL}}/actuator/httptrace"
2022-07-28 08:35:43 +00:00
stop-at-first-match: true
2021-04-28 10:20:24 +00:00
matchers-condition: and
matchers:
- type: word
part: body
words:
- '"traces"'
- '"timestamp"'
- '"principal"'
- '"session"'
condition: and
- type: word
2022-07-28 08:35:43 +00:00
part: header
2021-04-28 10:20:24 +00:00
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v1+json"
condition: or
2022-07-28 08:35:43 +00:00
- type: status
status:
- 200