Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CVE-2026-72444— flow_dissector: check device type before reading ETH_ADDRS

CVSS 7.8 · High EPSS 0.14% · P4

Affected Version Matrix 14

VendorProductVersion RangeStatus
LinuxLinux67a900cc0436d74e7ff89042371760def087680d< 0fe6455b8e1a22414f39c07bc90a1df12b52ec74affected
67a900cc0436d74e7ff89042371760def087680d< 9a65860959db594dfc1820c7fdc09285fb7556bfaffected
67a900cc0436d74e7ff89042371760def087680d< 594c90b197141944f25991b8314de5c26ee27a7eaffected
67a900cc0436d74e7ff89042371760def087680d< c6d3bcb0f934d4297ac5fa1c8656ae40694fb601affected
67a900cc0436d74e7ff89042371760def087680d< 825de39f0c35a112148799b3cbe45af3766c018aaffected
67a900cc0436d74e7ff89042371760def087680d< bf6e8af2c8be77489bedeae9f8a9654cb710e500affected
4.2affected
< 4.2unaffected
… +6 more rows
Get alerts for future matching vulnerabilitiesLog in to subscribe

I. Basic Information for CVE-2026-72444

Vulnerability Information

Have questions about the vulnerability? See if Shenlong's analysis helps!
View Shenlong Deep Dive ↗

Although we use advanced large model technology, its output may still contain inaccurate or outdated information.Shenlong tries to ensure data accuracy, but please verify and judge based on the actual situation.

Vulnerability Title
flow_dissector: check device type before reading ETH_ADDRS
Source: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: flow_dissector: check device type before reading ETH_ADDRS __skb_flow_dissect() unconditionally reads 12 bytes from eth_hdr(skb) when FLOW_DISSECTOR_KEY_ETH_ADDRS is requested. This assumes the skb has a valid Ethernet header at mac_header, which is not always the case. The problem can be triggered by: 1. Creating a TUN device in L3 mode (IFF_TUN, hard_header_len=0) 2. Attaching a multiq qdisc with a flower filter matching on eth_src 3. Sending a packet through AF_PACKET Since TUN in L3 mode has no link-layer header, mac_header points to the L3 data area. The flow dissector reads 12 bytes of uninitialized skb memory, which then propagates through fl_set_masked_key() and is used as a rhashtable lookup key in __fl_lookup(), as reported by KMSAN. Rejecting the filter in the control path (at tc filter add time) is not feasible because TC filter blocks can be shared between arbitrary devices -- a filter installed on an Ethernet device may later classify packets on a headerless device through a shared block. The device association is not fixed at filter creation time. Fix this by gating the memcpy on dev->type == ARPHRD_ETHER, which ensures only true Ethernet-framed packets have their addresses read. This is more precise than the previous hard_header_len >= 12 check, which would incorrectly pass for non-Ethernet link types like IPoIB (ARPHRD_INFINIBAND, hard_header_len=24) and FDDI (hard_header_len=21) whose L2 headers are not in Ethernet format. Additionally check skb_mac_header_was_set() to guard against the pathological case where mac_header is the unset sentinel (~0U), which would cause eth_hdr() to return a wild pointer. For the act_mirred redirect case (Ethernet packet redirected to a non-Ethernet device sharing a TC block), zeroing the key is the correct behavior: the packet is now being classified on the target device, where Ethernet address matching is not semantically meaningful. Note: on non-Ethernet devices, the zeroed key will match a filter configured with all-zero MAC addresses. This is an improvement over the previous behavior where uninitialized memory could randomly match any filter.
Source: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
Source: CVE Program / CVE List V5
Vulnerability Type
N/A
Source: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
Source: CNNVD (China National Vulnerability Database)
Vulnerability Description
Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel 4.2版本存在安全漏洞,该漏洞源于net/core/flow_dissector.c中的__skb_flow_dissect函数在请求FLOW_DISSECTOR_KEY_ETH_ADDRS时未检查设备类型和mac_header有效性,无条件读取eth_hdr(skb)的12字节数据,导致在TUN设备L3模式下读取未初始化内存,可能造成信息泄露或过滤器匹配异常。
Source: CNNVD (China National Vulnerability Database)
CVSS Information
N/A
Source: CNNVD (China National Vulnerability Database)
Vulnerability Type
N/A
Source: CNNVD (China National Vulnerability Database)

Affected Products

VendorProductAffected VersionsCPESubscribe
LinuxLinux 67a900cc0436d74e7ff89042371760def087680d ~ 0fe6455b8e1a22414f39c07bc90a1df12b52ec74 -
LinuxLinux 4.2 -

II. Public POCs for CVE-2026-72444

#POC DescriptionSource LinkShenlong Link
AI-Generated POCPremium

No public POC found.

Login to generate AI POC

III. Intelligence Information for CVE-2026-72444

登录查看更多情报信息。

Patches & Fixes for CVE-2026-72444 (6)

Same Patch Batch · Linux · 2026-08-15 · 845 CVEs total

CVE-2026-7428010.0 CRITICALcrypto: marvell/octeontx - fix DMA cleanup using wrong loop index
CVE-2026-7427910.0 CRITICALcrypto: cavium/cpt - fix DMA cleanup using wrong loop index
CVE-2026-7242110.0 CRITICALipv4: fib: Don't ignore error route in local/main tables.
CVE-2026-7447510.0 CRITICALvxlan: use neigh_ha_snapshot() in route_shortcircuit()
CVE-2026-7240810.0 CRITICALgeneve: gate GRO hint in geneve_gro_complete() on gs->gro_hint
CVE-2026-7240710.0 CRITICALgeneve: validate inner network offset in geneve_gro_complete()
CVE-2026-7430910.0 CRITICALvdpa/octeon_ep: fix IRQ-to-ring mapping in interrupt handler
CVE-2026-724939.9 CRITICALnet: serialize netif_running() check in enqueue_to_backlog()
CVE-2026-722109.8 CRITICALntfs: fix off-by-one in mapping pairs decoding bounds checks
CVE-2026-744739.8 CRITICALvxlan: use pskb_network_may_pull() in route_shortcircuit()
CVE-2026-722119.8 CRITICALntfs: grow index root value before reparent header update
CVE-2026-722099.8 CRITICALntfs: validate attribute values on lookup
CVE-2026-724779.8 CRITICALfs/ntfs3: call _ntfs_bad_inode() when failing to rename
CVE-2026-722999.8 CRITICALtipc: restrict socket queue dumps in enqueue tracepoints
CVE-2026-744349.8 CRITICALrxrpc: Don't move a peeked OOB message onto the pending queue
CVE-2026-744339.8 CRITICALrxrpc: Fix UAF in rxgk_issue_challenge()
CVE-2026-724739.8 CRITICALxprtrdma: Decouple req recycling from RPC completion
CVE-2026-724729.8 CRITICALnfs: use nfsi->rwsem to protect traversal of the file lock list
CVE-2026-745459.8 CRITICALrtase: fix double free of multi-frag skb on DMA map failure
CVE-2026-722079.8 CRITICALntfs: not change 0-byte $DATA attribute to non-resident

Showing top 20 of 845 CVEs. View all on vendor page &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2026-72444

No comments yet


Leave a comment