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

目标: 1000 元 · 已筹: 1336

100%

CWE-1284 类漏洞列表 211

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

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

MITRE CWE 官方描述
CWE:CWE-1284 输入中指定数量的验证不当 英文:产品接收预期用于指定数量(如大小或长度)的输入,但未对该数量是否具有所需属性进行验证或进行了错误的验证。 指定的数量包括大小、长度、频率、价格、速率、操作次数、时间等。代码可能依赖指定的数量来分配资源、执行计算、控制迭代等。
常见影响 (1)
Other, Integrity, Availability Varies 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)
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…
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-87735 ocaml mirage-crypto-pk<2.3.0 异常处理缺陷 — mirage-crypto-pk 4.3 Medium 2026-09-09
CVE-2026-87470 Chrome Mac 153.0.8010.36 沙箱逃逸漏洞 — Chrome - - 2026-09-09
CVE-2026-16025 PayTR WHMCS模块9.x版本支付验证不当漏洞 — PayTR Virtual Pos iFrame API (v9x) WHMCS Module 7.5 High 2026-09-08
CVE-2026-82750 ZenHive MPP 输入验证错误漏洞 — mpp 8.3 High 2026-09-06
CVE-2026-82751 ZenHive MPP 输入验证错误漏洞 — mpp 8.3 High 2026-09-06
CVE-2026-82752 Ash Framework 输入验证错误漏洞 — ash 5.9 Medium 2026-09-05
CVE-2026-70409 Erlang/OTP 输入验证错误漏洞 — OTP 6.3 Medium 2026-09-01
CVE-2026-70405 Erlang/OTP 输入验证错误漏洞 — OTP 6.3 Medium 2026-09-01
CVE-2026-59696 Erlang/OTP 输入验证错误漏洞 — OTP 6.9 Medium 2026-09-01
CVE-2026-71562 Erlang/OTP 输入验证错误漏洞 — OTP 6.3 Medium 2026-09-01
CVE-2026-82734 Ash Framework 输入验证错误漏洞 — ash 2.1 Low 2026-09-01
CVE-2026-81779 Silk Themes Newspapers X 输入验证错误漏洞 — Newspapers X 10.0 Critical 2026-08-31
CVE-2026-76763 SmallRye 输入验证错误漏洞 — Red Hat build of Quarkus 7.5 High 2026-08-31
CVE-2026-19873 Perl HTML::FormFu 2.08 资源耗尽漏洞 - - 2026-08-31
CVE-2026-45201 Imagination Technologies Graphics DDK 输入验证错误漏洞 — Graphics DDK - - 2026-08-21
CVE-2026-77640 torproject Tor 输入验证错误漏洞 — Tor 3.7 Low 2026-08-20
CVE-2026-75897 OpenSearch Dashboards 输入验证错误漏洞 — OpenSearch Dashboards 7.5 High 2026-08-18
CVE-2026-66679 WordPress Appointment Hour Booking 输入验证错误漏洞 — Appointment Hour Booking 6.5 Medium 2026-08-18
CVE-2026-73194 Perl DBI低于1.652版本存在堆溢出漏洞 - - 2026-08-15
CVE-2026-19639 Tenable Security Center 输入验证错误漏洞 — Security Center 4.3 Medium 2026-08-14
CVE-2026-53794 RsyncProject Rsync 输入验证错误漏洞 — rsync 5.3 Medium 2026-08-13
CVE-2026-19566 RRWO Net::CIDR::Set 输入验证错误漏洞 — Net::CIDR::Set - - 2026-08-12
CVE-2026-19518 SAMSUNG rlottie 输入验证错误漏洞 — rlottie 6.5 Medium 2026-08-11
CVE-2026-19517 SAMSUNG rlottie 输入验证错误漏洞 — rlottie 6.5 Medium 2026-08-11
CVE-2026-71394 GNU Emacs 输入验证错误漏洞 — Emacs 5.3 Medium 2026-08-10
CVE-2026-20313 Cisco Catalyst SD-WAN Controller 输入验证错误漏洞 — Cisco Catalyst SD-WAN Controller 7.7 High 2026-08-05
CVE-2026-70378 theotherphil imagecli 输入验证错误漏洞 — imagecli 7.5 High 2026-08-05
CVE-2026-40272 BlackBerry QNX Software Development Platform 输入验证错误漏洞 — QNX Software Development Platform 7.0 High 2026-07-29
CVE-2026-59532 magepeopleteam Booking and Rental Manager 输入验证错误漏洞 — Booking and Rental Manager 7.5 High 2026-07-27
CVE-2026-59531 WordPress Falcon – WordPress Optimizations & Tweaks 输入验证错误漏洞 — Falcon – WordPress Optimizations & Tweaks 7.5 High 2026-07-27

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