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

目标: 1000 元 · 已筹: 1310

100%

CWE-190 整数溢出或超界折返 类漏洞列表 845

CWE-190 整数溢出或超界折返 类弱点 845 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-190 是整数溢出或环绕漏洞,指程序在计算时未考虑数值范围,导致结果超出存储容量并发生回绕。攻击者常通过构造极大输入值,使整数运算结果异常变小,从而绕过安全逻辑或引发缓冲区溢出。开发者应避免假设结果必然大于原值,需在使用前验证输入范围,并采用支持溢出检测的安全库或静态分析工具,确保算术运算在预期范围内安全执行。

MITRE CWE 官方描述
CWE:CWE-190 整数溢出或回绕 (Integer Overflow or Wraparound) 英文:产品在执行计算时,如果其逻辑假设结果值始终大于原始值,则可能导致整数溢出或回绕 (Integer Overflow or Wraparound)。当整数值递增到一个超出其关联表示法所能存储的范围时,就会发生这种情况。一旦发生这种情况,该值可能会变成一个非常小或负数的值。
常见影响 (5)
AvailabilityDoS: Crash, Exit, or Restart, DoS: Resource Consumption (Memory), DoS: Instability
This weakness can generally lead to undefined behavior and therefore crashes. When the calculated result is used for resource allocation, this weakness can cause too many (or too few) resources to be allocated, possibly enabling crashes if the product requests more resources than can be provided.
IntegrityModify Memory
If the value in question is important to data (as opposed to flow), simple data corruption has occurred. Also, if the overflow/wraparound results in other conditions such as buffer overflows, further memory corruption may occur.
Confidentiality, Availability, Access ControlExecute Unauthorized Code or Commands, Bypass Protection Mechanism
This weakness can sometimes trigger buffer overflows, which can be used to execute arbitrary code. This is usually outside the scope of the product's implicit security policy.
Availability, OtherAlter Execution Logic, DoS: Crash, Exit, or Restart, DoS: Resource Consumption (CPU)
If the overflow/wraparound occurs in a loop index variable, this could cause the loop to terminate at the wrong time - too early, too late, or not at all (i.e., infinite loops). With too many iterations, some loops could consume too many resources such as memory, file handles, etc., possibly leading…
Access ControlBypass Protection Mechanism
If integer values are used in security-critical decisions, such as calculating quotas or allocation limits, integer overflows can be used to cause an incorrect security decision.
缓解措施 (5)
RequirementsEnsure that all protocols are strictly defined, such that all out-of-bounds behavior can be identified simply, and require strict conformance to the protocol.
RequirementsUse a language that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid. If possible, choose a language or compiler that performs automatic bounds checking.
Architecture and DesignUse a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482]. Use libraries or frameworks that make it easier to handle numbers without unexpected consequences. Examples include safe integer handling packages such as SafeInt (C++) or IntegerLib (C or C++). [REF-106]
ImplementationPerform input validation on any numeric input by ensuring that it is within the expected range. Enforce that the input meets both the minimum and maximum requirements for the expected range. Use unsigned integers where possible. This makes it easier to perform validation for integer overflows. When signed integers are required, ensure that the range check includes minimum values as well as maximum…
ImplementationUnderstand the programming language's underlying representation and how it interacts with numeric calculation (CWE-681). Pay close attention to byte size discrepancies, precision, signed/unsigned distinctions, truncation, conversion and casting between types, "not-a-number" calculations, and how the language handles numbers that are too large or too small for its underlying representation. [REF-7]…
代码示例 (2)
The following image processing code allocates a table for images.
img_t table_ptr; /*struct containing img data, 10kB each*/ int num_imgs; ... num_imgs = get_num_imgs(); table_ptr = (img_t*)malloc(sizeof(img_t)*num_imgs); ...
Bad · C
The following code excerpt from OpenSSH 3.3 demonstrates a classic case of integer overflow:
nresp = packet_get_int(); if (nresp > 0) { response = xmalloc(nresp*sizeof(char*)); for (i = 0; i < nresp; i++) response[i] = packet_get_string(NULL); }
Bad · C
CVE ID标题CVSS风险等级Published
CVE-2026-40915 GIMP 安全漏洞 — Red Hat Enterprise Linux 6 5.5 Medium2026-04-15
CVE-2026-39811 Fortinet FortiWeb 输入验证错误漏洞 — FortiWeb 4.4 Medium2026-04-14
CVE-2026-34238 ImageMagick 缓冲区错误漏洞 — ImageMagick 5.1 Medium2026-04-13
CVE-2026-33900 ImageMagick 安全漏洞 — ImageMagick 5.9 Medium2026-04-13
CVE-2026-6192 OpenJPEG 输入验证错误漏洞 — openjpeg 3.3 Low2026-04-13
CVE-2026-40447 SAMSUNG Escargot 安全漏洞 — Escargot 5.1 Medium2026-04-13
CVE-2026-25208 SAMSUNG Escargot 安全漏洞 — Escargot 8.1 High2026-04-13
CVE-2026-40385 Libexif 输入验证错误漏洞 — libexif 4.0 Medium2026-04-12
CVE-2026-4154 GIMP 输入验证错误漏洞 — GIMP 7.8AIHighAI2026-04-11
CVE-2026-4151 GIMP 输入验证错误漏洞 — GIMP 7.8AIHighAI2026-04-11
CVE-2026-4150 GIMP 输入验证错误漏洞 — GIMP 7.8AIHighAI2026-04-11
CVE-2026-5477 wolfSSL(CyaSSL) 安全漏洞 — wolfSSL 7.5 -2026-04-10
CVE-2026-40046 Apache ActiveMQ 输入验证错误漏洞 — Apache ActiveMQ 9.8AICriticalAI2026-04-09
CVE-2026-24173 NVIDIA Triton Inference Server 输入验证错误漏洞 — Triton Inference Server 7.5 High2026-04-07
CVE-2026-20889 Libraw 安全漏洞 — LibRaw 9.8 Critical2026-04-07
CVE-2026-24660 Libraw 安全漏洞 — LibRaw 8.1 High2026-04-07
CVE-2026-24450 Libraw 安全漏洞 — LibRaw 8.1 High2026-04-07
CVE-2026-20884 Libraw 安全漏洞 — LibRaw 8.1 High2026-04-07
CVE-2025-47392 Qualcomm Chipsets 输入验证错误漏洞 — Snapdragon 8.8 High2026-04-06
CVE-2026-34589 OpenEXR 缓冲区错误漏洞 — openexr 9.1 -2026-04-06
CVE-2026-34380 OpenEXR 缓冲区错误漏洞 — openexr 5.9 Medium2026-04-06
CVE-2026-34378 OpenEXR 安全漏洞 — openexr 6.5 Medium2026-04-06
CVE-2026-5476 Core Flight System 输入验证错误漏洞 — cFS 4.6 Medium2026-04-03
CVE-2026-34544 OpenEXR 缓冲区错误漏洞 — openexr 8.8AIHighAI2026-04-01
CVE-2026-35092 Corosync 输入验证错误漏洞 — Red Hat Enterprise Linux 10 7.5 High2026-04-01
CVE-2026-34219 rust-libp2p 安全漏洞 — rust-libp2p 7.5AIHighAI2026-03-31
CVE-2026-33983 FreeRDP 安全漏洞 — FreeRDP 6.5 Medium2026-03-30
CVE-2026-5121 libarchive 安全漏洞 — Red Hat Enterprise Linux 7 Extended Lifecycle Support 7.5 High2026-03-30
CVE-2026-3945 Tinyproxy 安全漏洞 — tinyproxy 7.5 High2026-03-30
CVE-2026-4985 cgif 安全漏洞 — CGIF 4.3 Medium2026-03-27

CWE-190(整数溢出或超界折返) 是常见的弱点类别,本平台收录该类弱点关联的 845 条 CVE 漏洞。