CWE-125 跨界内存读 类弱点 3492 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-125 越界读取属于内存安全漏洞,指程序访问了缓冲区边界之外的内存区域。攻击者利用此缺陷可读取敏感数据或引发信息泄露,甚至通过特定构造触发逻辑错误以辅助后续攻击。开发者应严格实施边界检查,确保索引在有效范围内,并使用支持自动边界检测的高级语言或静态分析工具,从源头杜绝非法内存访问。
int getValueFromArray(int *array, int len, int index) { int value; // check that the array index is less than the maximum // length of the array if (index < len) { // get the value at the specified index of the array value = array[index]; } // if array index is invalid then output error message // and return value indicating error else { printf("Value is: %d\n", array[index]); value = -1; } return value; }
... // check that the array index is within the correct // range of values for the array if (index >= 0 && index < len) { ...
int processMessageFromSocket(int socket) { int success; char buffer[BUFFER_SIZE]; char message[MESSAGE_SIZE]; // get message from socket and store into buffer //Ignoring possibliity that buffer > BUFFER_SIZE if (getMessage(socket, buffer, BUFFER_SIZE) > 0) { // place contents of the buffer into message structure ExMessage *msg = recastBuffer(buffer); // copy message body into string for processing int index; for (index = 0; index < msg->msgLength; index++) { message[index] = msg->msgBody[index]; } message[index] = '\0'; // process message success = processMessage(message); } return success; }
| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2026-62353 | TDengine 缓冲区错误漏洞 — TDengine | 5.4 | Medium | 2026-07-15 |
| CVE-2026-62351 | TDengine 缓冲区错误漏洞 — TDengine | 7.5 | High | 2026-07-15 |
| CVE-2026-60065 | F5 NGINX Plus 缓冲区错误漏洞 — NGINX Plus | 3.7 | Low | 2026-07-15 |
| CVE-2026-61862 | ImageMagick 缓冲区错误漏洞 — ImageMagick | 2.9 | Low | 2026-07-15 |
| CVE-2026-15030 | ASUS System Control Interface v3 缓冲区错误漏洞 — System Control Interface v3 | - | - | 2026-07-15 |
| CVE-2026-38754 | BusyBox 安全漏洞 — BusyBox | 5.1 | Medium | 2026-07-15 |
| CVE-2026-47979 | Adobe Media Encoder 缓冲区错误漏洞 — Adobe Media Encoder | 5.5 | Medium | 2026-07-14 |
| CVE-2026-15714 | libsoup 缓冲区错误漏洞 — Red Hat Enterprise Linux 10 | 6.5 | Medium | 2026-07-14 |
| CVE-2026-15720 | Open5GS 缓冲区错误漏洞 — open5gs | 8.6 | High | 2026-07-14 |
| CVE-2026-15712 | libsoup 缓冲区错误漏洞 — Red Hat Enterprise Linux 10 | 5.9 | Medium | 2026-07-14 |
| CVE-2026-47969 | Adobe Audition 缓冲区错误漏洞 — Audition | 5.5 | Medium | 2026-07-14 |
| CVE-2026-55121 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
| CVE-2026-58529 | Microsoft Active Directory Federation Services 缓冲区错误漏洞 — Windows 11 version 26H1 | 7.1 | High | 2026-07-14 |
| CVE-2026-58539 | Microsoft Windows RDP 缓冲区错误漏洞 — Windows 10 Version 1607 | 6.5 | Medium | 2026-07-14 |
| CVE-2026-58528 | Microsoft Windows USB Audio Class driver 缓冲区错误漏洞 — Windows 10 Version 1809 | 6.8 | Medium | 2026-07-14 |
| CVE-2026-57085 | Microsoft Windows Print Spooler Components 缓冲区错误漏洞 — Windows 10 Version 1607 | 5.5 | Medium | 2026-07-14 |
| CVE-2026-56195 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
| CVE-2026-56192 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
| CVE-2026-50665 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 7.8 | High | 2026-07-14 |
| CVE-2026-56186 | Microsoft Windows Schannel 缓冲区错误漏洞 — Windows 10 Version 1607 | 8.1 | High | 2026-07-14 |
| CVE-2026-56176 | Microsoft Win32k 缓冲区错误漏洞 — Windows 10 Version 1607 | 7.8 | High | 2026-07-14 |
| CVE-2026-55898 | Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 6.1 | Medium | 2026-07-14 |
| CVE-2026-55139 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
| CVE-2026-55122 | Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 7.1 | High | 2026-07-14 |
| CVE-2026-55058 | Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 7.8 | High | 2026-07-14 |
| CVE-2026-55054 | Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 6.5 | Medium | 2026-07-14 |
| CVE-2026-55044 | Microsoft Office Excel 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 7.8 | High | 2026-07-14 |
| CVE-2026-55035 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
| CVE-2026-55045 | Microsoft Office 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 8.4 | High | 2026-07-14 |
| CVE-2026-55050 | Microsoft Office Word 缓冲区错误漏洞 — Microsoft 365 Apps for Enterprise | 5.5 | Medium | 2026-07-14 |
CWE-125(跨界内存读) 是常见的弱点类别,本平台收录该类弱点关联的 3492 条 CVE 漏洞。