Files
nuclei-templates/misconfiguration/springboot/springboot-threaddump.yaml
2021-08-21 15:53:06 +05:30

38 lines
950 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
id: springboot-threaddump
info:
name: Detect Springboot Thread Dump page
author: philippedelteil
severity: low
description: The threaddump endpoint provides a thread dump from the applications JVM.
reference: https://docs.spring.io/spring-boot/docs/2.4.11-SNAPSHOT/actuator-api/htmlsingle/#threaddump
tags: springboot
requests:
- method: GET
path:
- "{{BaseURL}}/threaddump"
- "{{BaseURL}}/actuator/threaddump"
matchers-condition: and
matchers:
- type: word
part: body
words:
- '"threads":'
- '"threadName":'
condition: and
- type: status
status:
- 200
- type: word
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v2+json"
- "application/vnd.spring-boot.actuator.v1+json"
condition: or
part: header