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

目标: 1000 元 · 已筹: 1000

100.0%

CWE-408 不正确的行为次序:早期放大攻击 类漏洞列表 5

CWE-408 不正确的行为次序:早期放大攻击 类弱点 5 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-408属于操作顺序错误类漏洞,指系统在身份验证或授权前执行了合法但高成本的资源消耗操作。攻击者通常通过发送大量请求触发此类前置昂贵逻辑,从而耗尽服务器资源,导致拒绝服务。开发者应避免在认证前执行复杂计算或资源密集型任务,确保所有高开销操作仅在完成权限校验后执行,以保障系统稳定性。

MITRE CWE 官方描述
CWE:CWE-408 Incorrect Behavior Order: Early Amplification 英文:The product allows an entity to perform a legitimate but expensive operation before authentication or authorization has taken place. 译文:该产品允许实体在尚未进行身份验证(authentication)或授权(authorization)之前,执行一项合法但代价高昂的操作。
常见影响 (1)
AvailabilityDoS: Amplification, DoS: Crash, Exit, or Restart, DoS: Resource Consumption (CPU), DoS: Resource Consumption (Memory)
System resources, CPU and memory, can be quickly consumed. This can lead to poor system performance or system crash.
代码示例 (1)
This function prints the contents of a specified file requested by a user.
function printFile($username,$filename){ //read file into string $file = file_get_contents($filename); if ($file && isOwnerOf($username,$filename)){ echo $file; return true; } else{ echo 'You are not authorized to view this file'; } return false; }
Bad · PHP
CVE ID标题CVSS风险等级Published
CVE-2026-41405 OpenClaw 安全漏洞 — OpenClaw 7.5 High2026-04-28
CVE-2026-41374 OpenClaw 安全漏洞 — OpenClaw 5.3 Medium2026-04-28
CVE-2026-41331 OpenClaw 安全漏洞 — OpenClaw 5.3 Medium2026-04-20
CVE-2022-2576 Eclipse Californium 安全漏洞 — Eclipse Californium 7.5 -2022-07-29
CVE-2020-1657 Juniper Networks Junos OS 安全漏洞 — Junos OS 7.5 High2020-10-16

CWE-408(不正确的行为次序:早期放大攻击) 是常见的弱点类别,本平台收录该类弱点关联的 5 条 CVE 漏洞。