← Vulnerability feed

Vulnerability record · CVE-2026-53266 · published 25 June 2026

CVE-2026-53266: Linux kernel ebtables SNAT out-of-bounds write in ARP rewrite

Linux · Linux Kernel

The ebtables SNAT target rewrites the ARP sender hardware address via skb_store_bits() without first making that range writable. When the ARP SHA bytes live in a nonlinear skb fragment backed by a splice-imported file page, the kernel maps the frag page and copies the new MAC address directly into it, corrupting memory outside the intended buffer. The flaw is an out-of-bounds write in the Linux kernel netfilter bridge code.

8.8 CVSS 3.1 High CISA KEV since 18 Sep 2026 EPSS 0.65% · top 51.1% CWE-787 · Out-of-bounds write
8.8CVSS 3.1 base score
0.65%EPSS exploitation probability, 30 days
YesIn CISA KEV, fix deadline passed
1Affected product versions listed by NVD
9References
19 Sep 2026Last modified by NVD

Description

In the Linux kernel, the following vulnerability has been resolved: netfilter: bridge: make ebt_snat ARP rewrite writable The ebtables SNAT target keeps the Ethernet source address rewrite behind skb_ensure_writable(skb, 0). This is intentional: at the bridge ebtables hooks the Ethernet header is addressed through skb_mac_header()/eth_hdr(), while skb->data points at the Ethernet payload. Asking skb_ensure_writable() for ETH_HLEN bytes would check the payload, not the Ethernet header, and would reintroduce the small packet regression fixed by commit 63137bc5882a. However, the optional ARP sender hardware address rewrite is different. It writes through skb_store_bits() at an offset relative to skb->data: skb_store_bits(skb, sizeof(struct arphdr), info->mac, ETH_ALEN) skb_header_pointer() only safely reads the ARP header; it does not make the later sender hardware address range writable. If that range is still held in a nonlinear skb fragment backed by a splice-imported file page, skb_store_bits() maps the frag page and copies the new MAC address directly into it. Ensure the ARP SHA range is writable before reading the ARP header and before calling skb_store_bits().

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

Automated analysis

Generated by VULONE's analysis model from the NVD record, CISA KEV and EPSS data on 18 September 2026. Confidence: medium.

high priorityThe flaw is a high-severity kernel out-of-bounds write with high C/I/A impact and is listed in CISA KEV as exploited, though it requires local low-privileged access and EPSS is low.

What it is

The ebtables SNAT target rewrites the ARP sender hardware address via skb_store_bits() without first making that range writable. When the ARP SHA bytes live in a nonlinear skb fragment backed by a splice-imported file page, the kernel maps the frag page and copies the new MAC address directly into it, corrupting memory outside the intended buffer. The flaw is an out-of-bounds write in the Linux kernel netfilter bridge code.

Impact

An attacker gains a controlled out-of-bounds write into a page-backed skb fragment, which can corrupt kernel or file-backed memory and potentially lead to privilege escalation or code execution in the kernel context. The CVSS vector rates confidentiality, integrity and availability impact as high with scope change.

Attack surface

The vector is local (AV:L) with low privileges required (PR:L) and no user interaction (UI:N), so the attacker needs local access and the ability to trigger the ebtables SNAT ARP rewrite path, typically by sending crafted traffic through a bridge configured with the SNAT target. No remote unauthenticated path is described in the record.

Exploitation

CVE-2026-53266 is listed in CISA KEV with a due date of 2026-09-21, indicating known exploitation, though no ransomware campaign use is documented. EPSS is low at 0.00121 (2.19th percentile), and all references are patches or the KEV entry, with no public exploit tags.

What to do

  • Apply the upstream stable kernel patches referenced in the git.kernel.org links for your kernel branch.
  • If patching is not immediately possible, disable or avoid ebtables SNAT ARP sender hardware address rewriting on bridge interfaces.
  • Restrict local access and untrusted workloads on hosts that use bridge netfilter/ebtables SNAT rules.
  • Follow CISA BOD 26-04 guidance and the KEV required action, including evaluating internet exposure and discontinuing use if mitigations are unavailable.

Detection

  • Monitor for kernel crashes, oopses or memory corruption reports in dmesg/syslog tied to netfilter bridge or ebtables SNAT paths.
  • Audit bridge and ebtables configurations for SNAT rules that rewrite ARP sender hardware addresses.
  • Track local privilege escalation attempts or unusual kernel memory writes on hosts running bridge netfilter with ebtables SNAT.
  • Alert on unexpected modifications to file-backed pages or splice-related activity correlated with bridge traffic.

This assessment is produced automatically and is not human-reviewed. Verify against the vendor advisory before acting on it.

Exploitation in the wild

CISA added CVE-2026-53266 to the Known Exploited Vulnerabilities catalog on 18 September 2026 as "Linux Kernel Out-of-Bounds Write Vulnerability". Required action: Apply mitigations in accordance with vendor instructions, ensuring compliance with CISA’s BOD 26-04 Prioritizing Security Updates Based on Risk (see URL in Notes) guidance and CISA’s “Forensics Triage Requirements” (see URL in Notes). Follow applicable BOD 26-04 guidance for cloud services or discontinue use of the product if mitigations are unavailable. Stakeholders are responsible for evaluating each asset's internet exposure and ensuring adherence to BOD 26-04 patching guidelines. Federal deadline 21 September 2026.

Affected products

1 vulnerable configurations from NVD's CPE data, grouped by vendor and product.

References

Track CVE-2026-53266 inside VULONE

Watch it alongside the ransomware crews, C2 infrastructure and forum chatter that reference it, query it through the API and pull it into your SIEM over TAXII.

Start free Open in platform

Related vulnerabilities

Same products first, then exploited flaws of the same weakness class.

9.8CVE-2025-39682Linux kernel TLS zero-length record handling flaw on rx_listThe Linux kernel TLS receive path mishandles zero-length records that arrive from the rx_list, breaking the assumption that a record type change cann…KEVEPSS 2.9%analysed8.8CVE-2023-3079Google Chrome V8 type confusion enables heap corruptionCVE-2023-3079 is a type confusion flaw in the V8 JavaScript engine in Google Chrome before 114.0.5735.110. A crafted HTML page can trigger the confus…KEVEPSS 32%analysed8.8CVE-2013-6282Linux kernel ARM get_user/put_user missing address validationThe get_user and put_user API functions in the Linux kernel before 3.5.5 on v6k and v7 ARM platforms fail to validate certain addresses, allowing cra…KEVEPSS 40%analysed8.4CVE-2022-0185Linux Kernel Filesystem Context Heap Buffer OverflowThe legacy_parse_param function in the Linux kernel's Filesystem Context functionality fails to properly verify supplied parameter lengths, causing a…KEVEPSS 25%analysed8.4CVE-2013-2094Linux Kernel perf_swevent_init Integer Type Flaw Enables Local Privilege EscalationThe perf_swevent_init function in kernel/events/core.c in the Linux kernel before 3.8.9 uses an incorrect integer data type, allowing a local user to…KEVEPSS 48%analysed7.8CVE-2026-53362Linux kernel IPv6 UDP paged allocation out-of-bounds write__ip6_append_data() in the Linux kernel mis-accounts fraggap on the paged-allocation path, leaving the linear skb area undersized while pagedlen is o…KEVEPSS 0.71%analysed7.8CVE-2026-31431Linux kernel algif_aead in-place crypto operation flawThe Linux kernel's algif_aead AF_ALG AEAD interface operated in-place on buffers that come from different mappings, a flaw the fix resolves by revert…KEVEPSS 3.4%analysed7.8CVE-2025-38352Linux kernel POSIX CPU timer TOCTOU race enables local privilege escalationA time-of-check to time-of-use race exists in the Linux kernel between handle_posix_cpu_timers() and posix_cpu_timer_del(). When an exiting non-autor…KEVEPSS 1.3%analysed

Source: NIST National Vulnerability Database (record CVE-2026-53266), CISA KEV, FIRST EPSS (scores of 2026-09-26). This page is refreshed as NVD updates the record.