Skip to main content

Linux Kernel CVE-2026-52942

| EUVDEUVD-2026-38712 HIGH
Out-of-bounds Read (CWE-125)
2026-06-24 Linux GHSA-3p98-fq5j-wx55
7.1
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
7.1 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
vuln.today AI
6.1 MEDIUM

Local CAP_NET_RAW gives PR:L; leaked bytes go to the kernel log so C:L not C:H; primary real impact is a slab OOB fault/DoS, hence A:H, no integrity impact.

3.1 AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:H
4.0 AV:L/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:H/SC:N/SI:N/SA:N

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jun 28, 2026 - 08:29 vuln.today
CVSS changed
Jun 28, 2026 - 08:22 NVD
7.1 (HIGH)
Patch available
Jun 24, 2026 - 09:16 EUVD
CVE Published
Jun 24, 2026 - 07:14 cve.org
HIGH 7.1
CVE Published
Jun 24, 2026 - 07:14 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

In the Linux kernel, the following vulnerability has been resolved:

netfilter: nf_log: validate MAC header was set before dumping it

The fallback path of dump_mac_header() guards the MAC header access only with "skb->mac_header != skb->network_header", without checking skb_mac_header_was_set(). When the MAC header is unset, mac_header is 0xffff, so the test passes and skb_mac_header(skb) returns skb->head + 0xffff, ~64 KiB past the buffer; the loop then reads dev->hard_header_len bytes out of bounds into the kernel log.

This is reachable via the netdev logger: nf_log_unknown_packet() calls dump_mac_header() unconditionally, and an skb sent through AF_PACKET with PACKET_QDISC_BYPASS reaches the egress hook with mac_header still unset (__dev_queue_xmit(), which would reset it, is bypassed).

Add the skb_mac_header_was_set() check the ARPHRD_ETHER path already uses, and replace the open-coded MAC header length test with skb_mac_header_len(). Only skbs with an unset MAC header are affected; valid ones are dumped as before.

BUG: KASAN: slab-out-of-bounds in dump_mac_header (net/netfilter/nf_log_syslog.c:831) Read of size 1 at addr ffff88800ea49d3f by task exploit/148 Call Trace: kasan_report (mm/kasan/report.c:595) dump_mac_header (net/netfilter/nf_log_syslog.c:831) nf_log_netdev_packet (net/netfilter/nf_log_syslog.c:938 net/netfilter/nf_log_syslog.c:963) nf_log_packet (net/netfilter/nf_log.c:260) nft_log_eval (net/netfilter/nft_log.c:60) nft_do_chain (net/netfilter/nf_tables_core.c:285) nft_do_chain_netdev (net/netfilter/nft_chain_filter.c:307) nf_hook_slow (net/netfilter/core.c:619) nf_hook_direct_egress (net/packet/af_packet.c:257) packet_xmit (net/packet/af_packet.c:280) packet_sendmsg (net/packet/af_packet.c:3114) __sys_sendto (net/socket.c:2265)

AnalysisAI

Out-of-bounds kernel memory read in the Linux kernel netfilter netdev logger (nf_log_syslog) lets a local low-privileged attacker leak adjacent slab memory into the kernel log and potentially crash the system. The flaw is in dump_mac_header(), whose fallback path tests skb->mac_header != skb->network_header but omits skb_mac_header_was_set(); an unset MAC header (value 0xffff) passes the check and causes a read ~64 KiB past the skb buffer. …

Unlock full vulnerability intelligence

  • Risk assessment & exploitation conditions
  • Attack chain visualization
  • Remediation with exact patch versions
  • Threat intelligence from 22 sources
  • Personal watchlist & email alerts

Free forever · No credit card required

Attack ChainAIDerived

Hypothetical attack flow derived from CVE metadata

Access
Obtain local CAP_NET_RAW access
Delivery
Open AF_PACKET socket with PACKET_QDISC_BYPASS
Exploit
Send frame with MAC header unset
Execution
Hit nftables netdev egress log hook
Persist
dump_mac_header reads past skb buffer
Impact
Leak slab memory to kernel log / crash

Vulnerability AssessmentAI

Exploitation Exploitation requires three concrete prerequisites taken from the description: (1) the host must have an nftables netdev-family chain containing a 'log' action whose path reaches nf_log_unknown_packet()/dump_mac_header(); (2) the attacker must be able to create an AF_PACKET socket (typically CAP_NET_RAW) and set the PACKET_QDISC_BYPASS option; and (3) the packet must be sent so it reaches the egress nf_hook with mac_header still unset, which PACKET_QDISC_BYPASS achieves by skipping __dev_queue_xmit(). … Additional conditions and limiting factors are described in the full assessment.
Risk Assessment Signals are consistent and point to a moderate, locally-scoped issue rather than an urgent priority. … Full risk analysis with EPSS, KEV, and SSVC signal comparison available after sign-in.
Exploit Scenario A local user (or compromised container with CAP_NET_RAW) on a host that has an nftables netdev egress chain with a log rule opens an AF_PACKET socket, enables PACKET_QDISC_BYPASS, and transmits a crafted frame so it hits the egress hook with the MAC header unset. The logger then reads up to dev->hard_header_len bytes past the skb into the kernel log, disclosing adjacent slab memory and risking a slab-out-of-bounds fault/crash. …
Remediation Vendor-released patch: upgrade to a fixed stable kernel for your series - 5.15.210, 6.1.176, 6.6.143, 6.12.94, 6.18.36, or 7.0.13/7.1 - or apply the corresponding stable commits listed at git.kernel.org (e.g., https://git.kernel.org/stable/c/d704ee9c7bc68a161684c51a7ac05b446dcf38d4) via your distribution's kernel update. … Detailed patch versions, workarounds, and compensating controls in full report.

Recommended ActionAI

24 hours: Identify systems running vulnerable kernel versions (5.15 prior to 5.15.210; 6.1 prior to 6.1.176; 6.6 prior to 6.6.143; 6.12 prior to 6.12.94; 6.18 prior to 6.18.36; 7.0-7.1 prior to 7.0.13/7.1). …

Sign in for detailed remediation steps and compensating controls.

Threat intelligence, references, and detailed analysis are available after sign-in.

Share

CVE-2026-52942 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy