Spring Boot Information Panel - Detect

漏洞信息

漏洞名称: Spring Boot Information Panel - Detect

漏洞类型: 信息泄露

漏洞等级: 低危

漏洞描述: Spring Boot是一个广泛使用的Java框架,用于创建独立的、生产级的基于Spring的应用程序。它简化了新Spring应用的初始搭建以及开发过程。Spring Boot的信息面板通常用于展示应用程序的名称、版本信息以及其他相关值,这些信息对于开发者和管理员来说是重要的,但如果不当配置,可能会导致信息泄露。该漏洞属于信息泄露类型,其技术根源在于Spring Boot的信息面板未正确配置访问控制,使得敏感信息如Java版本、操作系统详情、运行时环境、JVM信息、构建详情和供应商信息等可以被未授权用户访问。虽然该漏洞的CVSS评分为0,表明其直接危害较低,但泄露的信息可能被攻击者用于进一步的攻击,如利用已知的漏洞进行针对性攻击。此外,由于不需要认证即可访问这些信息,攻击者可以轻松自动化探测和收集这些数据,增加了潜在的安全风险。

产品厂商: Spring

产品名称: Spring Boot

来源: https://github.com/projectdiscovery/nuclei-templates/blob/58a5e70299c4e8807f5ee6dc8c01caca9152a570/http%2Fmisconfiguration%2Fspringboot%2Fspringboot-info.yaml

类型: projectdiscovery/nuclei-templates:github issues

POC详情

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

id: springboot-info

info:
name: Spring Boot Information Panel - Detect
author: philippedelteil,tess,TheZakMan
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
cwe-id: CWE-200
metadata:
max-request: 2
tags: springboot,misconfig

http:
- method: GET
path:
- "{{BaseURL}}/info"
- "{{BaseURL}}/actuator/info"
- "{{BaseURL}}/management"
- "{{BaseURL}}/management/info"

stop-at-first-match: true

matchers-condition: and
matchers:
- type: status
status:
- 200

- type: dsl
dsl:
- "contains(tolower(content_type), 'application/json') || contains(tolower(content_type), 'application/vnd.spring-boot')"

- type: word
part: body
words:
- '"java"'
- '"version"'
condition: and

- type: word
part: body
words:
- '"os"'
- '"runtime"'
- '"jvm"'
- '"build"'
- '"vendor"'
condition: or



Spring Boot Information Panel - Detect
http://example.com/2025/07/25/github_4002482832/
作者
lianccc
发布于
2025年7月25日
许可协议