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

目标: 1000 元 · 已筹: 1336

100%

CWE-184 不完整的黑名单 类漏洞列表 128

CWE-184 不完整的黑名单 类弱点 128 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-184属于输入验证缺陷,指软件依赖黑名单机制过滤非法输入,但列表存在遗漏。攻击者常利用此漏洞,通过构造未被黑名单覆盖的恶意输入绕过安全限制,从而执行未授权操作或注入攻击。开发者应避免单纯依赖黑名单,转而采用白名单机制严格限定合法输入,或对所有输入进行标准化处理与深度校验,确保防御逻辑的完整性与健壮性。

MITRE CWE 官方描述
CWE:CWE-184 未完全列出禁止输入 英文:产品实现了一种保护机制,该机制依赖于一个输入(或输入属性)列表,这些输入(或属性)因违反策略而被禁止,或需要采取其他措施以在进一步处理之前进行中和,但该列表不完整。
常见影响 (1)
Access ControlBypass Protection Mechanism
Attackers may be able to find other malicious inputs that were not expected by the developer, allowing them to bypass the intended protection mechanism.
缓解措施 (1)
ImplementationDo not rely exclusively on detecting disallowed inputs. There are too many variants to encode a character, especially when different environments are used, so there is a high likelihood of missing some variants. Only use detection of disallowed inputs as a mechanism for detecting suspicious activity. Ensure that you are using other protection mechanisms that only identify "good" input - such as …
代码示例 (2)
The following code attempts to stop XSS attacks by removing all occurences of "script" in an input string.
public String removeScriptTags(String input, String mask) { return input.replaceAll("script", mask); }
Bad · Java
This example takes user input, passes it through an encoding scheme, then lists the contents of the user's home directory based on the user name.
sub GetUntrustedInput { return($ARGV[0]); } sub encode { my($str) = @_; $str =~ s/\&/\&amp;/gs; $str =~ s/\"/\&quot;/gs; $str =~ s/\'/\&apos;/gs; $str =~ s/\</\&lt;/gs; $str =~ s/\>/\&gt;/gs; return($str); } sub doit { my $uname = encode(GetUntrustedInput("username")); print "<b>Welcome, $uname!</b><p>\n"; system("cd /home/$uname; /bin/ls -l"); }
Bad · Perl
' pwd
Attack
CVE ID标题CVSS风险等级Published
CVE-2026-17630 IBM Langflow OSS 输入验证错误漏洞 — Langflow OSS 7.2 High2026-08-05
CVE-2026-71259 ESPHome 输入验证错误漏洞 — esphome 8.6 High2026-08-05
CVE-2026-70470 FlowiseAI Flowise 输入验证错误漏洞 — Flowise 9.5 Critical2026-08-04
CVE-2026-69263 FlowiseAI Flowise 输入验证错误漏洞 — Flowise 8.7 High2026-08-04
CVE-2026-50251 NLnet Labs Unbound 输入验证错误漏洞 — Unbound 5.3 Medium2026-07-22
CVE-2026-47392 Mervin Praison PraisonAI 输入验证错误漏洞 — PraisonAI 9.9 Critical2026-07-21
CVE-2026-63108 Roomote Roo Code 输入验证错误漏洞 — Roo-Code 8.8 High2026-07-20
CVE-2026-16129 Ryan S SafestClaw 输入验证错误漏洞 — SafestClaw 5.3 Medium2026-07-18
CVE-2026-62203 OpenClaw 输入验证错误漏洞 — OpenClaw 8.8 High2026-07-17
CVE-2026-52888 Nocobase 输入验证错误漏洞 — nocobase 6.8 Medium2026-07-15
CVE-2026-48736 Symfony 输入验证错误漏洞 — symfony--2026-07-14
CVE-2026-45066 Symfony 输入验证错误漏洞 — symfony--2026-07-14
CVE-2026-15625 Next Level Builder GoClaw 输入验证错误漏洞 — GoClaw 6.3 Medium2026-07-14
CVE-2026-62200 OpenClaw 输入验证错误漏洞 — OpenClaw 8.8 High2026-07-13
CVE-2026-62199 OpenClaw 输入验证错误漏洞 — OpenClaw 8.8 High2026-07-13
CVE-2026-55830 Zope RestrictedPython 输入验证错误漏洞 — RestrictedPython 8.3 High2026-07-08
CVE-2026-59261 OpenClaw 输入验证错误漏洞 — OpenClaw 7.1 High2026-07-08
CVE-2026-14534 Trail of Bits Fickling 输入验证错误漏洞 — fickling 8.8 High2026-07-04
CVE-2026-56777 n8n 输入验证错误漏洞 — n8n 5.0 Medium2026-06-30
CVE-2025-71355 Matthieu Maitre Picklescan 输入验证错误漏洞 — Picklescan--2026-06-30
CVE-2026-47389 Mastodon 输入验证错误漏洞 — mastodon 8.6 High2026-06-24
CVE-2026-53944 Ghost 输入验证错误漏洞 — Ghost 5.8 Medium2026-06-24
CVE-2026-54512 FasterXML jackson-databind 输入验证错误漏洞 — jackson-databind 8.1 High2026-06-23
CVE-2026-54513 FasterXML jackson-databind 输入验证错误漏洞 — jackson-databind 8.1 High2026-06-23
CVE-2026-56315 picklescan 输入验证错误漏洞 — picklescan 9.8 Critical2026-06-23
CVE-2025-71351 picklescan 输入验证错误漏洞 — picklescan--2026-06-21
CVE-2026-53873 Matthieu Maitre Picklescan 输入验证错误漏洞 — picklescan 9.8 Critical2026-06-17
CVE-2025-71323 Matthieu Maitre Picklescan 输入验证错误漏洞 — picklescan 9.8 Critical2026-06-17
CVE-2025-71320 Matthieu Maitre Picklescan 输入验证错误漏洞 — picklescan 9.8 Critical2026-06-17
CVE-2026-53864 OpenClaw 输入验证错误漏洞 — OpenClaw 8.1 High2026-06-16

CWE-184(不完整的黑名单) 是常见的弱点类别,本平台收录该类弱点关联的 128 条 CVE 漏洞。