目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-248 未捕获的异常 类漏洞列表 195

CWE-248 未捕获的异常 类弱点 195 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-248 属于未捕获异常漏洞,指函数抛出异常但未被代码正确捕获处理。攻击者通常通过构造特定输入触发异常,导致程序崩溃引发拒绝服务,或泄露堆栈跟踪等敏感信息。开发者应通过完善异常处理机制,使用 try-catch 块包裹潜在风险代码,并记录详细日志而非直接暴露内部细节,从而提升系统稳定性与安全性。

MITRE CWE 官方描述
CWE:CWE-248 未捕获异常 (Uncaught Exception) 英文:函数中抛出了异常,但该异常未被捕获。 当异常未被捕获时,可能导致程序崩溃或暴露敏感信息。
常见影响 (1)
Availability, ConfidentialityDoS: Crash, Exit, or Restart, Read Application Data
An uncaught exception could cause the system to be placed in a state that could lead to a crash, exposure of sensitive information or other unintended behaviors.
代码示例 (2)
The following example attempts to resolve a hostname.
protected void doPost (HttpServletRequest req, HttpServletResponse res) throws IOException { String ip = req.getRemoteAddr(); InetAddress addr = InetAddress.getByName(ip); ... out.println("hello " + addr.getHostName()); }
Bad · Java
The _alloca() function allocates memory on the stack. If an allocation request is too large for the available stack space, _alloca() throws an exception. If the exception is not caught, the program will crash, potentially enabling a denial of service attack. _alloca() has been deprecated as of Microsoft Visual Studio 2005(R). It has been replaced with the more secure _alloca_s().
CVE ID标题CVSS风险等级Published
CVE-2026-18675 Kong Mesh 控制面因畸形JWT令牌拒绝服务漏洞 — Kong Mesh 5.3 Medium2026-08-12
CVE-2026-52856 Pterodactyl Wings 输入验证错误漏洞 — wings 7.5 High2026-07-31
CVE-2026-64612 OpenPrinting libcupsfilters 异常处理不当漏洞 — Red Hat Enterprise Linux 10 7.5 High2026-07-20
CVE-2026-63747 SurrealDB 异常处理不当漏洞 — surrealdb 7.5 High2026-07-20
CVE-2025-71391 SurrealDB 异常处理不当漏洞 — surrealdb 7.1 High2026-07-18
CVE-2024-58369 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58368 SurrealDB 异常处理不当漏洞 — surrealdb 7.5 High2026-07-18
CVE-2024-58365 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58364 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58361 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58359 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58357 SurrealDB 异常处理不当漏洞 — surrealdb 6.5 Medium2026-07-18
CVE-2024-58358 SurrealDB 异常处理不当漏洞 — surrealdb 4.9 Medium2026-07-18
CVE-2026-62994 CoreDNS 异常处理不当漏洞 — coredns 3.7 Low2026-07-16
CVE-2026-47480 NVIDIA Triton Inference Server 异常处理不当漏洞 — Triton Inference Server 7.5 High2026-07-14
CVE-2026-48069 gRPC on Node.js 异常处理不当漏洞 — grpc-node 7.5 High2026-07-14
CVE-2026-48068 gRPC on Node.js 异常处理不当漏洞 — grpc-node 7.5 High2026-07-14
CVE-2026-48038 hapi.js joi 异常处理不当漏洞 — joi 5.3 Medium2026-07-14
CVE-2026-50328 Microsoft Windows Server Update Service 输入验证错误漏洞 — Windows 10 Version 1607 7.5 High2026-07-14
CVE-2026-55780 M2Team NanaZip 异常处理不当漏洞 — NanaZip--2026-07-10
CVE-2026-59162 QiAnXin Excelize 异常处理不当漏洞 — excelize--2026-07-10
CVE-2026-54775 CoreWCF 异常处理不当漏洞 — CoreWCF 6.5 Medium2026-07-08
CVE-2026-58208 Nats Server 异常处理不当漏洞 — nats-server 6.8 Medium2026-07-08
CVE-2026-59892 OpenTelemetry JavaScript Client 异常处理不当漏洞 — opentelemetry-js 7.5 High2026-07-08
CVE-2026-59875 isaacs node-tar 异常处理不当漏洞 — node-tar 5.3 Medium2026-07-08
CVE-2026-27844 Gallagher controller 6000 异常处理不当漏洞 — Controller 7000 and 6000 2.7 Low2026-07-07
CVE-2026-27790 Gallagher T-20 Readers 异常处理不当漏洞 — T-20 Readers 2.7 Low2026-07-07
CVE-2026-14181 Fastify @fastify/middie 异常处理不当漏洞 — @fastify/middie 7.5 High2026-07-01
CVE-2026-50129 Mastodon 异常处理不当漏洞 — mastodon 7.5 High2026-06-24
CVE-2026-55517 Deno Land Deno 异常处理不当漏洞 — deno 4.3 Medium2026-06-23

CWE-248(未捕获的异常) 是常见的弱点类别,本平台收录该类弱点关联的 195 条 CVE 漏洞。