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

目标: 1000 元 · 已筹: 1336 元

100%

CWE-754 对因果或异常条件的不恰当检查 类漏洞列表 329

CWE-754 对因果或异常条件的不恰当检查 类弱点 329 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-754 属于异常条件检查不当漏洞,指软件未正确验证低频但关键的异常状态,如内存不足或权限受限。攻击者常通过耗尽资源或模拟恶意客户端触发这些未处理条件,导致服务拒绝或逻辑错误。开发者应完善错误处理机制,对所有预期外的系统状态进行严格校验与防御性编程,确保在极端情况下仍能安全降级或报错,避免程序崩溃或被利用。

MITRE CWE 官方描述
CWE:CWE-754 对异常或例外情况的检查不当 英文:产品未检查或不正确地检查了在日常操作中不期望频繁发生的异常或例外情况。 程序员可能假设某些事件或条件永远不会发生,或者无需担心,例如内存不足、由于权限限制导致无法访问资源,或者客户端或组件行为不端。然而,攻击者可能故意触发这些异常情况,从而违反程序员的假设,可能引入不稳定性、错误行为或漏洞。请注意,本条目并非专门针对异常(exceptions)和异常处理(exception handling)的使用,后者是用于检查和处理异常或意外情况的机制。
常见影响 (1)
Integrity, Availability DoS: Crash, Exit, or Restart, Unexpected State
The data which were produced as a result of a function call could be in a bad state upon return. If the return value is not checked, then this bad data may be used in operations, possibly leading to a crash or other unintended behaviors.
缓解措施 (5)
Requirements Use a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. Choose languages with features such as exception handling that force the programmer to anticipate unusual conditions that may generate exceptions. Custom exceptions may need to be developed to handle unusual business-logic conditions. Be careful not to pass sensitive exceptions…
Implementation Check the results of all functions that return a value and verify that the value is expected.
Effectiveness: High
Implementation If using exception handling, catch and throw specific exceptions instead of overly-general exceptions (CWE-396, CWE-397). Catch and handle exceptions as locally as possible so that exceptions do not propagate too far up the call stack (CWE-705). Avoid unchecked or uncaught exceptions where feasible (CWE-248).
Effectiveness: High
Implementation Ensure that error messages only contain minimal details that are useful to the intended audience and no one else. The messages need to strike the balance between being too cryptic (which can confuse users) or being too detailed (which may reveal more than intended). The messages should not reveal the methods that were used to determine the error. Attackers can use detailed information to refine or…
Implementation Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
代码示例 (2)
Consider the following code segment:
char buf[10], cp_buf[10]; fgets(buf, 10, stdin); strcpy(cp_buf, buf);
Bad · C
The following code does not check to see if memory allocation succeeded before attempting to use the pointer returned by malloc().
buf = (char*) malloc(req_size); strncpy(buf, xfer, req_size);
Bad · C
CVE ID 标题 CVSS 风险等级 Published
CVE-2023-39205 Zoom Client 代码问题漏洞 — Zoom Clients 4.3 Medium 2023-11-14
CVE-2023-5967 Mattermost 代码问题漏洞 — Mattermost 4.3 Medium 2023-11-06
CVE-2023-45812 Apollo Router 代码问题漏洞 — router 7.5 High 2023-10-18
CVE-2023-44199 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 7.5 High 2023-10-12
CVE-2023-44198 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 5.8 Medium 2023-10-12
CVE-2023-44196 Juniper Networks Junos OS Evolved 代码问题漏洞 — Junos OS Evolved 6.5 Medium 2023-10-12
CVE-2023-41304 Huawei HarmonyOS 代码问题漏洞 — HarmonyOS 5.3 - 2023-10-11
CVE-2023-4828 Proofpoint Insider Threat Management 代码问题漏洞 — ITM Server 6.4 Medium 2023-09-13
CVE-2023-29198 Electron 代码问题漏洞 — electron 6.0 Medium 2023-09-06
CVE-2023-37899 Feathers 代码问题漏洞 — feathers 7.5 High 2023-07-19
CVE-2023-36835 Juniper Networks Junos OS QFX 代码问题漏洞 — Junos OS 7.5 High 2023-07-14
CVE-2023-38069 JetBrains IntelliJ IDEA 代码问题漏洞 — IntelliJ IDEA 3.3 Low 2023-07-12
CVE-2023-34099 Shopware 代码问题漏洞 — shopware 5.3 Medium 2023-06-27
CVE-2023-34449 ink! 安全漏洞 — ink 5.3 Medium 2023-06-14
CVE-2023-32716 Splunk 代码问题漏洞 — Splunk Enterprise 6.5 Medium 2023-06-01
CVE-2023-25620 Schneider Electric Modicon M580 代码问题漏洞 — Modicon M340 CPU (part numbers BMXP34*) 6.5 Medium 2023-04-19
CVE-2023-25619 Schneider Electric Modbus Serial Driver 代码问题漏洞 — Modicon M340 CPU (part numbers BMXP34*) 7.5 High 2023-04-19
CVE-2023-28974 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 7.4 High 2023-04-17
CVE-2023-28976 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 7.5 High 2023-04-17
CVE-2023-28979 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 4.7 Medium 2023-04-17
CVE-2022-3192 ABB AC500 V2 代码问题漏洞 — AC500 V2 5.3 Medium 2023-03-31
CVE-2023-23626 go-bitfield 代码问题漏洞 — go-bitfield 5.9 Medium 2023-02-09
CVE-2023-23931 cryptography 代码问题漏洞 — cryptography 4.8 Medium 2023-02-07
CVE-2022-45854 Zyxel NWA110AX 代码问题漏洞 — NWA110AX firmware 4.3 Medium 2023-02-07
CVE-2022-45788 Schneider Electric EcoStruxure Control Expert 代码问题漏洞 — EcoStruxure Control Expert 7.5 High 2023-01-30
CVE-2022-43393 Zyxel GS1920 代码问题漏洞 — GS1920-24v2 firmware 8.2 High 2023-01-11
CVE-2022-37392 Apache Traffic Server 代码问题漏洞 — Apache Traffic Server 8.2 - 2022-12-19
CVE-2022-32749 Apache Traffic Server 代码问题漏洞 — Apache Traffic Server 7.5 - 2022-12-19
CVE-2022-3616 Cloudflare OctoRPKI 安全漏洞 — OctoRPKI 5.4 Medium 2022-10-28
CVE-2022-22238 Juniper Networks Junos OS 代码问题漏洞 — Junos OS 5.3 Medium 2022-10-18

CWE-754(对因果或异常条件的不恰当检查) 是常见的弱点类别,本平台收录该类弱点关联的 329 条 CVE 漏洞。