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

38 lines
837 B
YAML
Raw Normal View History

2021-08-20 07:08:19 +00:00
id: springboot-info
info:
name: Detect Springboot Information page
author: philippedelteil
2021-09-16 20:51:49 +00:00
severity: info
2021-08-20 07:08:19 +00:00
description: Displays app name and version information among others values
tags: springboot
requests:
- method: GET
path:
- "{{BaseURL}}/info"
- "{{BaseURL}}/actuator/info"
2021-08-20 19:50:10 +00:00
2022-07-28 08:35:40 +00:00
stop-at-first-match: true
2021-08-20 07:08:19 +00:00
matchers-condition: and
matchers:
- type: word
part: body
words:
- '"build"'
- '"artifact"'
condition: and
- type: word
2022-07-28 08:35:40 +00:00
part: header
2021-08-20 07:08:19 +00:00
words:
- "application/json"
- "application/vnd.spring-boot.actuator"
- "application/vnd.spring-boot.actuator.v2+json"
- "application/vnd.spring-boot.actuator.v1+json"
condition: or
2022-07-28 08:35:40 +00:00
- type: status
status:
- 200