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

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-755 (对异常条件的处理不恰当) — Vulnerability Class 173

173 vulnerabilities classified as CWE-755 (对异常条件的处理不恰当). AI Chinese analysis included.

CWE-755 represents a critical software weakness where applications fail to properly manage unexpected or exceptional runtime conditions, such as network timeouts, resource exhaustion, or invalid input states. This flaw typically allows attackers to exploit the lack of robust error handling by triggering specific exceptions that cause the system to crash, leak sensitive internal stack traces, or enter an unstable state. By carefully crafting inputs that induce these exceptional conditions, adversaries can achieve denial of service or potentially escalate privileges if the application behaves unpredictably during failure recovery. To mitigate this risk, developers must implement comprehensive exception handling mechanisms that validate inputs, ensure graceful degradation, and log errors securely without exposing internal details. Utilizing defensive programming practices and rigorous testing ensures that the software remains stable and secure even when encountering unforeseen operational anomalies.

MITRE CWE Description
The product does not handle or incorrectly handles an exceptional condition.
Common Consequences (1)
Other Other
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 following example attempts to allocate memory for a character. After the call to malloc, an if statement is used to check whether the malloc function failed.
foo=malloc(sizeof(char)); //the next line checks to see if malloc failed if (foo==NULL) { //We do nothing so we just ignore the error. }
Bad · C
foo=malloc(sizeof(char)); //the next line checks to see if malloc failed if (foo==NULL) { printf("Malloc failed to allocate memory resources"); return -1; }
Good · C
CVE ID Title CVSS Severity Published
CVE-2024-47609 Remotely exploitable DoS in Tonic `<=v0.12.2` — tonic 7.5 - 2024-10-01
CVE-2024-6594 WatchGuard Firebox Single Sign-On Client Denial-of-Service — SSO Client 8.7 High 2024-09-25
CVE-2024-45038 Device crash via malformed MQTT packet when downlink is enabled in Meshtastic device firmware — firmware 7.5 High 2024-08-27
CVE-2024-0108 NVIDIA Jetson 安全漏洞 — NVIDIA Jetson AGX Xavier series, Jetson Xavier NX, Jetson TX2 series, Jetson TX2 NX, Jetson TX1, Jetson Nano series 8.7 High 2024-08-08
CVE-2024-39552 Junos OS and Junos OS Evolved: Malformed BGP UPDATE causes RPD crash — Junos OS 7.5 High 2024-07-11
CVE-2024-39541 Junos OS and Junos OS Evolved: Inconsistent information in the TE database can lead to an rpd crash — Junos OS 6.5 Medium 2024-07-11
CVE-2024-39560 Junos OS and Junos OS Evolved: Memory leak due to RSVP neighbor persistent error leading to kernel crash — Junos OS 6.5 Medium 2024-07-10
CVE-2024-39555 Junos OS and Junos OS Evolved: Receipt of a specific malformed BGP update causes the session to reset — Junos OS 7.5 High 2024-07-10
CVE-2024-34750 Apache Tomcat: HTTP/2 excess header handling DoS — Apache Tomcat 5.3AI Medium AI 2024-07-03
CVE-2024-3150 Privilege Escalation in mintplex-labs/anything-llm — mintplex-labs/anything-llm 8.8AI High AI 2024-06-06
CVE-2023-50212 D-Link G416 httpd Improper Handling of Exceptional Conditions Information Disclosure Vulnerability — G416 6.5 - 2024-05-03
CVE-2024-32652 @hono/node-server contains Denial of Service risk when receiving Host header that cannot be parsed — node-server 7.5 High 2024-04-19
CVE-2024-30380 Junos OS and Junos OS Evolved: l2cpd crash upon receipt of a specific TLV — Junos OS 6.5 Medium 2024-04-16
CVE-2024-28869 Possible denial of service vulnerability with Content-length header in Traefik — traefik 7.5 High 2024-04-12
CVE-2024-30382 Junos OS and Junos OS Evolved: RPD crash when CoS-based forwarding (CBF) policy is configured — Junos OS 7.5 High 2024-04-12
CVE-2024-21610 Junos OS: If in a scaled CoS scenario information on CoS state is gathered mgd processes get stuck — Junos OS 4.3 Medium 2024-04-12
CVE-2024-32001 SpiceDB: LookupSubjects may return partial results if a specific kind of relation is used — spicedb 2.2 Low 2024-04-10
CVE-2023-42509 JFrog Artifactory Sensitive Data Leakage in Repository configuration process — Artifactory 6.6 Medium 2024-03-07
CVE-2023-4537 Protocol Downgrade in Comarch ERP XL — ERP XL 7.4 High 2024-02-15
CVE-2024-23325 Envoy crashes when using an address type that isn’t supported by the OS — envoy 7.5 High 2024-02-09
CVE-2023-6267 Quarkus: json payload getting processed prior to security checks when rest resources are used with annotations. — Red Hat build of Quarkus 2.13.9.Final 8.6 High 2024-01-25
CVE-2024-21587 Junos OS: MX Series: Memory leak in bbe-smgd process if BFD liveness detection for DHCP subscribers is enabled — Junos OS 6.5 Medium 2024-01-12
CVE-2024-21585 Junos OS and Junos OS Evolved: BGP session flaps on NSR-enabled devices can cause rpd crash — Junos OS 5.9 Medium 2024-01-12
CVE-2024-20699 Windows Hyper-V Denial of Service Vulnerability — Windows 10 Version 1809 5.5 Medium 2024-01-09
CVE-2024-21907 Improper Handling of Exceptional Conditions in Newtonsoft.Json 7.5AI High AI 2024-01-03
CVE-2023-52075 ReVanced API vulnerable to Denial of Service due to lack of error caching — revanced-api 7.5 High 2023-12-27
CVE-2023-50728 Unauthenticated Denial of Service in the octokit/webhooks library — webhooks.js 5.4 Medium 2023-12-15
CVE-2023-25644 Denial of Service Vulnerability in Some ZTE Mobile Internet Products — MC801A 6.5 Medium 2023-12-14
CVE-2023-46673 Elasticsearch 安全漏洞 — Elasticsearch 6.5 Medium 2023-11-22
CVE-2023-48232 Floating point Exception in adjust_plines_for_skipcol() in vim — vim 3.9 Low 2023-11-16

Vulnerabilities classified as CWE-755 (对异常条件的处理不恰当) represent 173 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.