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

32 lines
620 B
YAML
Raw Normal View History

2021-08-04 16:47:01 +00:00
id: springboot-dump
2021-08-06 15:18:32 +00:00
2021-08-04 16:38:47 +00:00
info:
name: Detect Springboot Dump Actuator
author: pussycat0x
severity: low
description: Performs a thread dump
2021-08-06 15:18:32 +00:00
tags: springboot,exposure
2021-08-04 16:38:47 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}/dump"
- "{{BaseURL}}/actuator/dump"
2021-08-06 15:18:32 +00:00
2021-08-04 16:38:47 +00:00
matchers-condition: and
matchers:
- type: word
part: body
words:
- "threadName"
- "threadId"
- "waitedTime"
- "lockName"
- "stackTrace"
- "methodName"
condition: and
2021-08-06 15:18:32 +00:00
2021-08-04 16:38:47 +00:00
- type: status
status:
- 200