Spring Boot Information Panel - Detect

漏洞信息

漏洞名称: Spring Boot Information Panel - Detect

漏洞类型: 信息泄露

漏洞等级: 低危

漏洞描述: Spring Boot是一个广泛使用的Java框架,用于创建独立的、生产级的基于Spring的应用程序。它简化了新Spring应用的初始搭建以及开发过程。Spring Boot的信息面板(info endpoint)是一个内置的功能,用于展示应用程序的名称、版本信息以及其他配置值。这些信息通常用于监控和管理应用程序。然而,如果未正确配置,这些敏感信息可能会被未授权的用户访问,导致信息泄露。

该漏洞属于信息泄露类型,其技术根源在于Spring Boot的信息面板默认配置可能过于宽松,未对访问进行适当的限制。虽然这些信息本身不直接导致远程代码执行或其他严重的安全问题,但它们可能被攻击者用于进一步的攻击,例如识别应用程序的版本以寻找已知的漏洞。

从影响分析来看,虽然该漏洞的CVSS评分为0,表明其直接危害较低,但信息泄露仍然是一个不容忽视的安全问题。攻击者可以利用泄露的信息进行更精确的攻击,如针对特定版本的已知漏洞。此外,由于不需要任何认证即可访问这些信息,攻击者可以轻松自动化这一过程,增加了被利用的风险。因此,建议管理员限制对信息面板的访问,或完全禁用不必要的端点,以减少潜在的安全风险。

产品厂商: Spring

产品名称: Spring Boot

来源: https://github.com/projectdiscovery/nuclei-templates/blob/2559630c032f4009725929c4085ec1b50cd01666/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_1505763270/
作者
lianccc
发布于
2025年7月25日
许可协议