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

目标: 1000 元 · 已筹: 1336

100%

CWE-1284 类漏洞列表 180

CWE-1284 类弱点 180 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-1284属于输入验证缺陷,指程序未正确校验输入中指定的数量属性。攻击者常通过提交异常数值(如极大长度或频率)触发资源耗尽、计算错误或逻辑越界,导致服务拒绝或系统崩溃。开发者应实施严格的边界检查,确保输入数量符合预期范围,并在分配资源或控制循环前进行有效性验证,从而防止因非法数量引发的安全风险。

MITRE CWE 官方描述
CWE:CWE-1284 输入中指定数量的验证不当 英文:产品接收预期用于指定数量(如大小或长度)的输入,但未对该数量是否具有所需属性进行验证或进行了错误的验证。 指定的数量包括大小、长度、频率、价格、速率、操作次数、时间等。代码可能依赖指定的数量来分配资源、执行计算、控制迭代等。
常见影响 (1)
Other, Integrity, AvailabilityVaries by Context, DoS: Resource Consumption (CPU), Modify Memory, Read Memory
When the quantity is not properly validated, then attackers can specify malicious quantities to cause excessive resource allocation, trigger unexpected failures, enable buffer overflows, etc.
缓解措施 (1)
ImplementationAssume 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…
Effectiveness: High
代码示例 (2)
This example demonstrates a shopping interaction in which the user is free to specify the quantity of items to be purchased and a total is calculated.
... public static final double price = 20.00; int quantity = currentUser.getAttribute("quantity"); double total = price * quantity; chargeUser(total); ...
Bad · Java
This example asks the user for a height and width of an m X n game board with a maximum dimension of 100 squares.
... #define MAX_DIM 100 ... /* board dimensions */ int m,n, error; board_square_t *board; printf("Please specify the board height: \n"); error = scanf("%d", &m); if ( EOF == error ){ die("No integer passed: Die evil hacker!\n"); } printf("Please specify the board width: \n"); error = scanf("%d", &n); if ( EOF == error ){ die("No integer passed: Die evil hacker!\n"); } if ( m > MAX_DIM || n > MAX_DIM ) { die("Value too large: Die evil hacker!\n"); } board = (board_square_t*) malloc( m * n * sizeof(board_square_t)); ...
Bad · C
CVE ID标题CVSS风险等级Published
CVE-2026-66374 Knot Resolver <6.4.1 DoQ堆缓冲区溢出漏洞 — Knot Resolver 8.1 High2026-07-25
CVE-2026-11721 ISC BIND 9 输入验证错误漏洞 — BIND 9 7.5 High2026-07-22
CVE-2026-32665 NLnet Labs Unbound 输入验证错误漏洞 — Unbound 7.5 High2026-07-22
CVE-2026-59252 ZenHive MPP 输入验证错误漏洞 — mpp--2026-07-17
CVE-2026-59694 ZenHive MPP 输入验证错误漏洞 — mpp--2026-07-17
CVE-2026-59695 ZenHive MPP 输入验证错误漏洞 — mpp--2026-07-17
CVE-2026-57364 WordPress Better Payment 输入验证错误漏洞 — Better Payment – Instant Payments, Donations, Fundraising with Subscriptions &amp; More 6.5 Medium2026-07-13
CVE-2026-57023 Juniper Networks Junos OS 输入验证错误漏洞 — Junos OS 7.5 High2026-07-09
CVE-2026-57019 Juniper Networks Junos OS 输入验证错误漏洞 — Junos OS 6.5 Medium2026-07-09
CVE-2026-59997 OpenBSD OpenSSH 输入验证错误漏洞 — OpenSSH 4.2 Medium2026-07-08
CVE-2022-4989 ASUS AI Suite 3 输入验证错误漏洞 — AI Suite 3--2026-07-03
CVE-2022-4990 ASUS AI Suite 3 输入验证错误漏洞 — AI Suite 3--2026-07-03
CVE-2026-55952 Erlang/OTP 输入验证错误漏洞 — OTP 8.2 High2026-07-02
CVE-2026-57623 WordPress W3 Total Cache 输入验证错误漏洞 — W3 Total Cache 9.0 Critical2026-07-02
CVE-2026-11906 IBM DB2 输入验证错误漏洞 — Db2 6.5 Medium2026-06-30
CVE-2026-56035 Cory Marsh BitFire Security 输入验证错误漏洞 — BitFire Security 8.6 High2026-06-26
CVE-2026-54092 File Browser 输入验证错误漏洞 — filebrowser 6.5 Medium2026-06-25
CVE-2026-12755 Devolutions Server 输入验证错误漏洞 — Server--2026-06-25
CVE-2026-57062 GnuPG 输入验证错误漏洞 — GnuPG 2.9 Low2026-06-23
CVE-2026-57053 GNU libidn 输入验证错误漏洞 — libidn 4.0 Medium2026-06-23
CVE-2026-53540 Kludex python-multipart 输入验证错误漏洞 — python-multipart 3.7 Low2026-06-22
CVE-2026-55392 nilfs-dev nilfs-utils 输入验证错误漏洞 — nilfs-utils 5.5 Medium2026-06-18
CVE-2026-55706 OpenBSD 输入验证错误漏洞 — OpenBSD 5.8 Medium2026-06-17
CVE-2026-49110 WP Swings Upsell Order Bump Offer for WooCommerce 输入验证错误漏洞 — Upsell Order Bump Offer for WooCommerce 7.5 High2026-06-15
CVE-2026-49078 WP Travel Engine 输入验证错误漏洞 — WP Travel Engine 7.5 High2026-06-15
CVE-2026-45441 Magepeople Event Booking Manager 输入验证错误漏洞 — WpEvently 7.5 High2026-06-15
CVE-2026-42657 Wasiliy Strecker Contest Gallery 输入验证错误漏洞 — Contest Gallery 6.5 Medium2026-06-15
CVE-2026-12059 Cellopoint CelloOS 输入验证错误漏洞 — CelloOS 8.8 High2026-06-12
CVE-2026-11596 ConnectWise ScreenConnect 安全漏洞 — ScreenConnect 4.7 Medium2026-06-10
CVE-2026-53689 libnfs 安全漏洞 — libnfs 7.1 High2026-06-10

CWE-1284 是常见的弱点类别,本平台收录该类弱点关联的 180 条 CVE 漏洞。