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

目标: 1000 元 · 已筹: 1325

100%

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

CVSS 9.8 · Critical EPSS 0.58% · P43

影响版本矩阵 30

厂商产品版本范围状态
LinuxLinux1325f85fa49f57df034869de430f7c302ae23109< 324262c38438255bf6bdbf6342ca47c0badaab76affected
1325f85fa49f57df034869de430f7c302ae23109< 973f2c250289f5bf6cc146b98aa6fdde11fe50d6affected
1325f85fa49f57df034869de430f7c302ae23109< ce744264b06b97069b3722511ab355738311fee0affected
1325f85fa49f57df034869de430f7c302ae23109< 885c8591784da6314f9aa82fa460ac69f9f79e5faffected
1325f85fa49f57df034869de430f7c302ae23109< 8d155e2d1c4102f74f82a2bf9c016164bb0f7384affected
1325f85fa49f57df034869de430f7c302ae23109< 906f16a836de13fe61f49cdce2f66f2dbd14caf4affected
1325f85fa49f57df034869de430f7c302ae23109< ef8ebb1c637b4cfb61a9dd2e013376774ee2033baffected
1325f85fa49f57df034869de430f7c302ae23109< 5e1c4ece08ccdc197177631f111845a2c68eede3affected
… +22 条更多
获取后续新漏洞提醒登录后订阅

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

漏洞信息

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

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

Vulnerability Title
usbip: validate number_of_packets in usbip_pack_ret_submit()
来源: 美国国家漏洞数据库 NVD
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: usbip: validate number_of_packets in usbip_pack_ret_submit() When a USB/IP client receives a RET_SUBMIT response, usbip_pack_ret_submit() unconditionally overwrites urb->number_of_packets from the network PDU. This value is subsequently used as the loop bound in usbip_recv_iso() and usbip_pad_iso() to iterate over urb->iso_frame_desc[], a flexible array whose size was fixed at URB allocation time based on the *original* number_of_packets from the CMD_SUBMIT. A malicious USB/IP server can set number_of_packets in the response to a value larger than what was originally submitted, causing a heap out-of-bounds write when usbip_recv_iso() writes to urb->iso_frame_desc[i] beyond the allocated region. KASAN confirmed this with kernel 7.0.0-rc5: BUG: KASAN: slab-out-of-bounds in usbip_recv_iso+0x46a/0x640 Write of size 4 at addr ffff888106351d40 by task vhci_rx/69 The buggy address is located 0 bytes to the right of allocated 320-byte region [ffff888106351c00, ffff888106351d40) The server side (stub_rx.c) and gadget side (vudc_rx.c) already validate number_of_packets in the CMD_SUBMIT path since commits c6688ef9f297 ("usbip: fix stub_rx: harden CMD_SUBMIT path to handle malicious input") and b78d830f0049 ("usbip: fix vudc_rx: harden CMD_SUBMIT path to handle malicious input"). The server side validates against USBIP_MAX_ISO_PACKETS because no URB exists yet at that point. On the client side we have the original URB, so we can use the tighter bound: the response must not exceed the original number_of_packets. This mirrors the existing validation of actual_length against transfer_buffer_length in usbip_recv_xbuff(), which checks the response value against the original allocation size. Kelvin Mbogo's series ("usb: usbip: fix integer overflow in usbip_recv_iso()", v2) hardens the receive-side functions themselves; this patch complements that work by catching the bad value at its source -- in usbip_pack_ret_submit() before the overwrite -- and using the tighter per-URB allocation bound rather than the global USBIP_MAX_ISO_PACKETS limit. Fix this by checking rpdu->number_of_packets against urb->number_of_packets in usbip_pack_ret_submit() before the overwrite. On violation, clamp to zero so that usbip_recv_iso() and usbip_pad_iso() safely return early.
来源: 美国国家漏洞数据库 NVD
CVSS Information
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
来源: 美国国家漏洞数据库 NVD
Vulnerability Type
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于usbip驱动usbip_pack_ret_submit()未验证number_of_packets值,恶意服务器可设置过大值导致堆越界写入。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

神龙十问 — AI 深度分析

十问解析:根本原因、利用方式、修复建议、紧迫性。摘要免费,完整版需登录。

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux 1325f85fa49f57df034869de430f7c302ae23109 ~ 324262c38438255bf6bdbf6342ca47c0badaab76 -
LinuxLinux 2.6.39 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-31607 补丁与修复 (5)

同批安全公告 · Linux · 2026-04-24 · 共 138 条

CVE-2026-316379.8 CRITICALLinux kernel 安全漏洞
CVE-2026-315899.8 CRITICALLinux kernel 安全漏洞
CVE-2026-315369.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316499.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316699.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316689.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316089.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316339.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316099.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316579.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316599.8 CRITICALLinux kernel 安全漏洞
CVE-2026-316369.1 CRITICALLinux kernel 安全漏洞
CVE-2026-315888.8 HIGHLinux kernel 安全漏洞
CVE-2026-315708.8 HIGHLinux kernel 安全漏洞
CVE-2026-315588.8 HIGHLinux kernel 安全漏洞
CVE-2026-315538.8 HIGHLinux kernel 安全漏洞
CVE-2026-316228.8 HIGHLinux kernel 安全漏洞
CVE-2026-316298.8 HIGHLinux kernel 安全漏洞
CVE-2026-316118.6 HIGHLinux kernel 安全漏洞
CVE-2026-316318.2 HIGHLinux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-31607

暂无评论


发表评论