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

44 lines
1.0 KiB
YAML
Raw Normal View History

2021-08-20 07:08:19 +00:00
id: springboot-info
info:
name: Spring Boot Information Panel - Detect
2021-08-20 07:08:19 +00:00
author: philippedelteil
2021-09-16 20:51:49 +00:00
severity: info
description: Spring Boot information panel displaying app name, version information, and other values was detected.
classification:
cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:N
cvss-score: 0.0
cwe-id: CWE-200
2021-08-20 07:08:19 +00:00
tags: springboot
http:
2021-08-20 07:08:19 +00:00
- 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
# Enhanced by md on 2023/02/06