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

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-89551— Linux kernel 安全漏洞

一分钟漏洞结论

影响对象
Linux Linux
利用判断
尚无明确在野利用证据,仍需结合暴露面评估
建议动作
优先检查厂商安全公告和参考链接中的修复版本;无法立即升级时,限制受影响服务暴露并加强监测。

Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel存在安全漏洞,该漏洞源于xdr_buf_trim()对buf->len的递减未进行钳制,当buf->len小于各iov_len之和时发生无符号下溢,导致buf->len回绕并传播到下游XDR解码器。

CVSS 9.8 · Critical EPSS 0.52% · P43

影响版本矩阵 18

厂商产品 版本范围状态
Linux Linux 4c190e2f913f038c9c91ee63b59cd037260ba353< a3d77bcd974b8625d16bddf448cb3a1b5e37049c affected
4c190e2f913f038c9c91ee63b59cd037260ba353< fa16bbe987b47e771e52eeb1b4540f18d92496ac affected
4c190e2f913f038c9c91ee63b59cd037260ba353< a924ac4c78afab71bf82641afa3b62e0c4a8b55e affected
4c190e2f913f038c9c91ee63b59cd037260ba353< 4bf59cb0ea5b0ddfbc46a1dc2fa78fc8b9986ce4 affected
4c190e2f913f038c9c91ee63b59cd037260ba353< e6267cccd7b05cc514e57f2160aa8db85f5c2701 affected
4c190e2f913f038c9c91ee63b59cd037260ba353< ad0cce80d4af2f74674e8b635d97aa3880e83da8 affected
4c190e2f913f038c9c91ee63b59cd037260ba353< 85e9602650e9df07190abe817cee3b4d9bc3df17 affected
4c190e2f913f038c9c91ee63b59cd037260ba353< 3f491306dcb673ff5e78e1044ba450c58978774e affected
… +10 条更多
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2026-89551 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow xdr_buf_trim() trims `len` bytes from the tail of an xdr_buf by walking the tail, pages, and head iovecs. Each per-section step uses min_t() so it never removes more bytes than that section holds, but the final accounting at the fix_len label subtracts the total bytes actually consumed from buf->len without any clamp: fix_len: buf->len -= (len - trim); When the caller has set buf->len to a value smaller than the sum of the iov_lens, (len - trim) can exceed buf->len and the unsigned subtraction wraps to near UINT_MAX. gss_krb5_unwrap_v2() reaches xdr_buf_trim() in exactly that state: buf->head[0].iov_len -= GSS_KRB5_TOK_HDR_LEN + headskip; buf->len = len - (GSS_KRB5_TOK_HDR_LEN + headskip); xdr_buf_trim(buf, ec + GSS_KRB5_TOK_HDR_LEN + tailskip); buf->len is a small wire-derived value while the iov_lens are at page scale, so the per-section loops legitimately consume far more bytes than buf->len records. The wrapped buf->len then propagates as the authoritative stream bound into every downstream XDR decoder. Fix by clamping the decrement so buf->len bottoms out at zero: buf->len -= min_t(unsigned int, buf->len, len - trim); On the normal path where the iov_lens sum to buf->len, (len - trim) is always <= buf->len and the result is identical to before. No callers change behavior outside the underflow case.
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
来源: CVE Program / CVE List V5
Vulnerability Type
N/A
来源: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel存在安全漏洞,该漏洞源于xdr_buf_trim()对buf->len的递减未进行钳制,当buf->len小于各iov_len之和时发生无符号下溢,导致buf->len回绕并传播到下游XDR解码器。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 4c190e2f913f038c9c91ee63b59cd037260ba353 ~ a3d77bcd974b8625d16bddf448cb3a1b5e37049c -
Linux Linux 3.9 -

二、漏洞 CVE-2026-89551 的公开POC

# POC 描述 源链接 神龙链接
AI 生成 POC 高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2026-89551 的情报信息

登录查看更多情报信息。

CVE-2026-89551 补丁与修复 (8)

同批安全公告 · Linux · 2026-09-11 · 共 431 条

CVE-2026-89688 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89655 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89658 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89660 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89659 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89662 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89669 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89674 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89675 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89676 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89677 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89681 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89686 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89703 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89479 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89478 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89702 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89482 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89708 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-89712 9.8 CRITICAL Linux kernel 安全漏洞

显示前 20 条,共 431 条。 查看全部 &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2026-89551

暂无评论


发表评论