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

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-14696— Linux Kernel 以太网桥 RX 包泄漏致服务拒绝漏洞

一分钟漏洞结论

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

当启用以太网桥接( )时, 中的 负责决定如何处理从桥成员接口接收到的每一帧。对于需要同时交付给本地协议栈的帧,代码会调用 并返回 。然而,该辅助函数并不会消费该数据包——它仅通过 调用 ,而该函数返回 ,且并未获取 的所有权。 随后, 判定结果会通过 传播至 中的 。在该处, 被解释为“数据包已被消费,无需释放”。但由于实际上没有消费者获取了该数据包的所有权,接收端(RX)的 永远不会被归还到池中,从而发生内存泄漏。 具体可复现的泄漏场景发生在:当 被设置(在启用 时默认为 y)时,携带未注册 L3 处理器的 E

CVSS 6.5 · Medium

影响版本矩阵 1

厂商产品 版本范围状态
zephyrproject zephyr 4.4.0< 4.4.2 affected
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
Ethernet bridge RX packet leak enables denial of service via RX buffer-pool exhaustion
来源: CVE Program / CVE List V5
Vulnerability Description
When Ethernet bridging is enabled (CONFIG_NET_ETHERNET_BRIDGE), eth_bridge_input_process() in subsys/net/l2/ethernet/bridge/bridge_input.c decides how each frame received on a bridge member interface is handled. For frames that must also be delivered to the local stack, the code called eth_bridge_handle_locally() and returned NET_OK. That helper does not consume the packet — it only calls bridge_iface_recv() (via virtual_recv()), which returns NET_CONTINUE without taking ownership of pkt. The NET_OK verdict then propagates through ethernet_recv() up to processing_data() in subsys/net/ip/net_core.c, where NET_OK is interpreted as "the packet was consumed, do not free it." Because no consumer actually took ownership, the RX net_pkt is never returned to the pool and is leaked. The concretely reproducible leak occurs for frames whose EtherType has no registered L3 handler when CONFIG_NET_ETHERNET_FORWARD_UNRECOGNISED_ETHERTYPE is set (default y when CONFIG_NET_SOCKETS_PACKET is enabled): the fall-through L3 dispatch does not overwrite the NET_OK verdict, so ethernet_recv() returns NET_OK and the buffer is never released. Any device on a bridged L2 segment can emit broadcast/multicast frames carrying an arbitrary EtherType with no authentication. Each such frame permanently consumes one buffer from the finite RX pool (CONFIG_NET_PKT_RX_COUNT), so a brief broadcast flood exhausts the pool and the device can no longer receive traffic until it is rebooted — a persistent denial of service. There is no confidentiality or integrity impact. The fix makes eth_bridge_handle_locally() propagate the real net_verdict and return NET_CONTINUE for locally-kept frames, writing the bridge interface back through a new dst_iface out-parameter so the packet follows the normal receive path and is unreferenced exactly once.
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
来源: CVE Program / CVE List V5
Vulnerability Type
在移除最后引用时对内存的释放不恰当(内存泄露)
来源: CVE Program / CVE List V5

受影响产品

厂商 产品 影响版本 CPE 订阅
zephyrproject zephyr 4.4.0 ~ 4.4.2 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-14696 其他参考 (2)

同批安全公告 · zephyrproject · 2026-08-31 · 共 5 条

CVE-2026-14697 6.5 MEDIUM IPv6邻居请求包泄露导致服务拒绝
CVE-2026-14366 6.4 MEDIUM SiWx91x WiFi驱动TX包重复解引用/释放后使用漏洞
CVE-2026-14368 5.4 MEDIUM Zephyr LwM2M 解析器 NUL 写入越界漏洞
CVE-2026-14367 3.1 LOW I3C IBI 工作节点链表数据竞争漏洞

IV. Related Vulnerabilities

V. Comments for CVE-2026-14696

暂无评论


发表评论