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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel存在安全漏洞,该漏洞源于SPI Xilinx驱动确定FIFO缓冲区大小的方法不正确,可能导致驱动死锁。

AI 预测 5.3 利用难度: 中等 EPSS 0.18% · P7

影响版本矩阵 18

厂商产品 版本范围状态
Linux Linux 4c9a761402d780b86b9b068aba4ef8e29ed15e99< 4ee65558a7fda463222f5edc631b6d7862218725 affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< e98f589d54068dfcc7da42d9b730e47b84e2991a affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< 1fc6a6c0cc7796b0c1cf4eec3f0720f422f09273 affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< dfab0d4698a642bab9b895e2e6d240838cfe2cc6 affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< d7ccd8736b67550eca746ed7fa39a36016ff114b affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< 1c9246a199e19b2fd36e94feed60e55f27103a4f affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< d1944b71c18e7494756bff1a6f80c25be99eaecb affected
4c9a761402d780b86b9b068aba4ef8e29ed15e99< 47f3b5365536e8c38f264824ab15fdb74454e066 affected
… +10 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
spi: xilinx: use FIFO occupancy register to determine buffer size
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: spi: xilinx: use FIFO occupancy register to determine buffer size The method the driver uses to determine the size of the FIFO has a problem. What it currently does is this: It stops the SPI hardware and writes to the TX FIFO register until TX FIFO FULL asserts in the status register. But the hardware does not only have the FIFO, it also has a shift register which can hold a byte. This can be seen, when writing a byte to the FIFO (while the SPI hardware is stopped,) the TX FIFO EMPTY is still empty. So, if we have a FIFO size of 16 for example, the current method returns a 17. This is a problem, at least when using the driver in irq mode. The same size determined for the TX FIFO is also assumed for the RX FIFO. When a SPI transaction wants to write the amount of the FIFO size or more bytes, the following happens, for example with 16 bytes FIFO size: The driver stops the SPI hardware and writes 17 bytes to the TX FIFO and starts the SPI hardware and goes sleep. The hardware then shifts out 17 bytes (FIFO + shift register) and simultaneously reads bytes into the RX FIFO, but it only has 16 places, so it looses one byte. Then TX FIFO empty asserts, wakes the driver again, which has a fast path and reads 16 bytes from the RX FIFO, but before reading the last 17th byte (which is lost) it does this: sr = xspi->read_fn(xspi->regs + XSPI_SR_OFFSET); if (!(sr & XSPI_SR_RX_EMPTY_MASK)) { xilinx_spi_rx(xspi); rx_words--; } It reads the status register and checks if the RX FIFO is not empty. But it is empty in our case. So this check spins in a while loop forever locking the driver. This patch fixes the logic to determine the FIFO size.
来源: CVE Program / CVE List V5
CVSS Information
N/A
来源: 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存在安全漏洞,该漏洞源于SPI Xilinx驱动确定FIFO缓冲区大小的方法不正确,可能导致驱动死锁。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 4c9a761402d780b86b9b068aba4ef8e29ed15e99 ~ 4ee65558a7fda463222f5edc631b6d7862218725 -
Linux Linux 4.0 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

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

同批安全公告 · Linux · 2026-08-15 · 共 845 条

CVE-2026-74475 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74280 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74279 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72407 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74309 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72408 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72421 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72493 9.9 CRITICAL Linux kernel 安全漏洞
CVE-2026-72463 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72248 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72477 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72381 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72473 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72472 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74406 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72222 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74401 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72137 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74376 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72130 9.8 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-74276

暂无评论


发表评论