817 vulnerabilities classified as CWE-190 (整数溢出或超界折返). AI Chinese analysis included.
CWE-190 represents a critical logic flaw where arithmetic operations exceed the maximum capacity of the assigned integer data type, causing the value to wrap around to a negative number or zero. Attackers typically exploit this vulnerability by manipulating input values to trigger the overflow, thereby bypassing security checks that assume the resulting number remains positive or within expected bounds. This often leads to severe consequences such as buffer overflows, memory corruption, or unauthorized access. To prevent such issues, developers must implement rigorous input validation and use safe arithmetic libraries that detect potential overflows before execution. Additionally, employing static analysis tools and adhering to secure coding standards ensures that integer calculations are handled with appropriate bounds checking, effectively mitigating the risk of wraparound errors in production environments.
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); ...nresp = packet_get_int(); if (nresp > 0) { response = xmalloc(nresp*sizeof(char*)); for (i = 0; i < nresp; i++) response[i] = packet_get_string(NULL); }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2017-17408 | Bitdefender Internet Security 安全漏洞 — Bitdefender Internet Security | 8.8 | - | 2017-12-21 |
| CVE-2017-17409 | Bitdefender Internet Security 安全漏洞 — Bitdefender Internet Security | 8.8 | - | 2017-12-21 |
| CVE-2017-10954 | Bitdefender Internet Security 安全漏洞 — Bitdefender Internet Security | 8.8 | - | 2017-10-31 |
| CVE-2017-9282 | Micro Focus VisiBroker 数字错误漏洞 — Micro Focus VisiBroker | 9.8 | - | 2017-09-21 |
| CVE-2017-7542 | Linux kernel 输入验证错误漏洞 — Linux kernel versions up to and including 4.12 | 5.5 | - | 2017-07-21 |
| CVE-2017-7529 | F5 Nginx 输入验证错误漏洞 — nginx | 7.5 | - | 2017-07-13 |
| CVE-2014-9192 | Trihedral Engineering Limited VTScada Integer Overflow — VTS | 7.5 | - | 2014-12-11 |
Vulnerabilities classified as CWE-190 (整数溢出或超界折返) represent 817 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.