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

42 lines
1000 B
YAML
Raw Normal View History

2022-07-28 13:59:25 +00:00
id: springboot-scheduledtasks
2022-07-28 07:58:03 +00:00
info:
2022-07-28 13:59:25 +00:00
name: Springboot Scheduledtasks Actuator
2022-07-28 07:58:03 +00:00
author: ELSFA7110
severity: info
description: This endpoint to retrieve the scheduled tasks
reference:
- https://docs.spring.io/spring-boot/docs/current/actuator-api/htmlsingle/#scheduled-tasks
metadata:
verified: true
2022-07-28 13:59:25 +00:00
tags: misconfig,springboot,exposure
2022-07-28 07:58:03 +00:00
requests:
- method: GET
path:
- "{{BaseURL}}/scheduledtasks"
- "{{BaseURL}}/actuator/scheduledtasks"
stop-at-first-match: true
matchers-condition: and
matchers:
- type: word
part: body
words:
- "cron"
- "fixedDelay"
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"
condition: or
- type: status
status:
- 200