Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-248 (未捕获的异常) — Vulnerability Class 230

230 vulnerabilities classified as CWE-248 (未捕获的异常). AI Chinese analysis included.

CWE-248, Uncaught Exception, represents a critical software weakness where a function throws an error that the calling code fails to handle. This oversight typically allows attackers to exploit the vulnerability by triggering specific conditions that force the application to crash, resulting in a denial of service. Alternatively, the unhandled exception may cause the system to dump detailed stack traces or internal state information to the user interface, inadvertently exposing sensitive data such as database credentials or server architecture. To mitigate this risk, developers must implement robust error handling mechanisms, ensuring that all potential exceptions are explicitly caught and managed. By using try-catch blocks and providing generic, non-revealing error messages, programmers can maintain application stability and prevent information leakage, thereby securing the software against both availability attacks and data exposure.

MITRE CWE Description
An exception is thrown from a function, but it is not caught. When an exception is not caught, it may cause the program to crash or expose sensitive information.
Common Consequences (1)
Availability, Confidentiality DoS: 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.
Examples (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 Title CVSS Severity Published
CVE-2026-32641 Parseable: Unauthenticated Denial of Service via panic in Kinesis header parsing middleware — parseable 7.5 High 2026-09-18
CVE-2026-92954 vm2 3.10.0 through 3.11.5 Denial of Service via Host Promise — vm2 8.6 High 2026-09-17
CVE-2026-82410 Pocketbase: Unhandled panic in worker goroutines — pocketbase 8.7 High 2026-09-16
CVE-2026-92081 fastify vulnerable to Denial of Service via unhandled exception on HTTP/2 trailer responses — fastify 5.9 Medium 2026-09-16
CVE-2026-61544 libp2p-quic: Remote panic via certificate expiry race during QUIC handshake — rust-libp2p 8.2 High 2026-09-15
CVE-2026-55244 ASTEVAL: Sandbox Escape via BaseException Subclasses — asteval 5.0 Medium 2026-09-14
CVE-2026-53496 ExifReader HEIC/AVIF ISO-BMFF parser throws uncaught RangeError on truncated boxes — ExifReader 5.3 Medium 2026-09-14
CVE-2026-54541 Nimiq: Panic in TrieProof::verify via child_index unwrap on equal-length keys — core-rs-albatross 3.7 Low 2026-09-14
CVE-2026-89090 Denial of service in the event stream header decoder in AWS SDK for Go v2 — AWS SDK for Go v2 5.9 Medium 2026-09-11
CVE-2026-87123 hbs vulnerable to Denial of Service via unhandled exception in async helper output escaping — hbs 5.9 Medium 2026-09-11
CVE-2026-69839 Windows iSCSI Target Service Denial of Service Vulnerability — Windows 10 Version 1607 6.5 Medium 2026-09-08
CVE-2026-82058 Unhandled Exception in MongoDB Server JSON Schema Validation Error Generation Leads to Denial of Service — MongoDB Server 6.5 Medium 2026-09-08
CVE-2022-51014 PocketMine-MP before 4.0.7 Denial of Service via JSON Decoding — PocketMine-MP 6.5 Medium 2026-09-07
CVE-2022-51009 PocketMine-MP before 4.7.2 Denial of Service via Skin Geometry — PocketMine-MP 7.5 High 2026-09-06
CVE-2026-19534 undici vulnerable to Denial of Service via unrequested WebSocket subprotocol — undici 7.5 High 2026-09-04
CVE-2026-85014 undici vulnerable to Denial of Service via WebSocketStream unclean close — undici 5.9 Medium 2026-09-04
CVE-2026-85024 undici vulnerable to Denial of Service via unhandled error in WebSocket permessage-deflate decompression — undici 5.9 Medium 2026-09-04
CVE-2026-72644 Uncaught Exception in Kibana Leading to Denial of Service — Kibana 6.5 Medium 2026-09-01
CVE-2026-82417 qs.stringify throws TypeError on objects with a non-callable constructor.isBuffer property — qs 5.3 Medium 2026-08-29
CVE-2026-81517 MongoDB Connector for BI Improper Error Handling of Log Write Failures May Cause Loss of SQL Service — BI Connector 7.5 High 2026-08-28
CVE-2026-77078 multer vulnerable to Denial of Service via crafted multipart field names — multer 7.5 High 2026-08-28
CVE-2026-55484 ALOS HTTP: Unauthenticated remote DoS: malformed path starting with "?" triggers out-of-bounds panic in sanitizeRequestPath, crashing entire server — alos-http 7.5 High 2026-08-28
CVE-2026-82254 gitoxide before 0.69.0 Denial of Service via gix-pack — gitoxide 7.5 High 2026-08-28
CVE-2026-63403 Faktory: Unrecovered panic in command handlers allows full-server denial of service — faktory 8.7 High 2026-08-25
CVE-2026-79778 rclone before v1.75.0 Denial of Service via TUS nil-response panic — rclone 5.3 Medium 2026-08-25
CVE-2026-77781 Tie::Hash::Regex versions before 2.0.0 for Perl will throw an exception on unparseable lookup keys - - 2026-08-21
CVE-2026-53530 ratex-parser panics on `\verb` with a multibyte delimiter (UTF-8 byte-boundary slice) — RaTeX 8.7 High 2026-08-21
CVE-2026-52731 ZEBRA: Full node denial of service via non-ASCII LongPollId in getblocktemplate — zebra 6.5 Medium 2026-08-18
CVE-2026-52738 ZEBRA: Finalized address balance credit-first overflow on consensus-valid blocks — zebra 6.9 Medium 2026-08-18
CVE-2026-52739 ZEBRA: Repeated Non-Finalized Shielded Transaction Aborts Zebra Before Duplicate-Nullifier Rejection — zebra 5.9 Medium 2026-08-18

Vulnerabilities classified as CWE-248 (未捕获的异常) represent 230 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.