CISA added CVE-2026-53266, an out-of-bounds write in the Linux kernel's ebtables SNAT target, to the Known Exploited Vulnerabilities catalog on 2026-09-18 with a three-day remediation deadline of 2026-09-21.
What Is It
The ebtables SNAT target (net/bridge/netfilter/ebt_snat.c) keeps its Ethernet source address rewrite behind skb_ensure_writable(skb, 0). That guard is deliberate: at the bridge ebtables hooks the Ethernet header is reached through skb_mac_header()/eth_hdr() while skb->data points at the payload, so requesting ETH_HLEN bytes would check the wrong region and reintroduce an earlier small-packet regression.
The optional ARP sender hardware address (SHA) rewrite behaves differently. It writes via skb_store_bits(skb, sizeof(struct arphdr), info->mac, ETH_ALEN) at an offset relative to skb->data. skb_header_pointer() only safely reads the ARP header; it does not make the later SHA range writable. If that range still sits 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. The fix ensures the ARP SHA range is writable before the header read and before the skb_store_bits() call.
CWE-787 (Out-of-bounds Write). CVSS 3.1 base score 8.8 (HIGH), vector AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H.
Why It Matters
CISA's SSVC assessment marks exploitation as active, with technical impact rated total and automatable no. KEV inclusion indicates this is being exploited in the wild. Known ransomware campaign use is listed as Unknown. The scope-changed CVSS vector and the write landing in a splice-imported file page suggest corruption could reach memory outside the network stack's own buffers, though the practical reach in any given deployment will depend on how the affected skb was constructed. CISA also flags this entry as requiring forensic triage.
What's Vulnerable
Linux kernel, file net/bridge/netfilter/ebt_snat.c. Affected from 5.10 onward, plus stable backport ranges 5.4.73–5.5, 5.8.17–5.9, and 5.9.2–5.10. Fixed versions: 5.10.259, 5.15.210, 6.1.176, 6.6.143, 6.12.94, 6.18.36, 7.0.13, and 7.1. Kernels before 5.10 that fall outside the listed stable ranges are not listed as affected. CISA notes impacted products could be end-of-life or end-of-service, in which case users should discontinue use or move to a supported version.
Patch Status
Patched upstream across eight stable branches. Required action per CISA: apply mitigations per vendor instructions in compliance with BOD 26-04 and CISA's Forensics Triage Requirements; follow applicable BOD 26-04 guidance for cloud services, or discontinue use if mitigations are unavailable. Stakeholders must evaluate each asset's internet exposure. Due date: 2026-09-21.
Sources
- CISA KEV Catalog; https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2026-53266
- NVD, CVE-2026-53266, https://nvd.nist.gov/vuln/detail/CVE-2026-53266
- BOD 26-04: Prioritizing Security Updates Based on Risk; https://www.cisa.gov/news-events/directives/bod-26-04-prioritizing-security-updates-based-risk
- CISA Forensics Triage Requirements; https://www.cisa.gov/news-events/directives/bod-26-04-implementation-guidance-prioritizing-security-updates-based-risk
- kernel.org stable commit bf84ad7; https://git.kernel.org/stable/c/bf84ad7c7a9ede46e31afaa41a1ba06a159e8c87
- kernel.org stable commit 76280b7; https://git.kernel.org/stable/c/76280b78cc9f23bdc6438e10ad6dff148ef8375b
- kernel.org stable commit b7e9193; https://git.kernel.org/stable/c/b7e91939ba9be805a62a257fa4e227dffbb88fa0
- kernel.org stable commit afd64b5; https://git.kernel.org/stable/c/afd64b59c3de9bbbdd3759e834fdc55cda716e0b
- kernel.org stable commit 153ea96; https://git.kernel.org/stable/c/153ea96c806aea395daba907a4f88480b6ad5093
- kernel.org stable commit b186752; https://git.kernel.org/stable/c/b18675263db1147c8e1cab625400c13a0d87bd2d
- kernel.org stable commit c9b5ff5; https://git.kernel.org/stable/c/c9b5ff59feffb92a147a84a5aa28acd2cb8ff4c5
- kernel.org stable commit 67ba971; https://git.kernel.org/stable/c/67ba971ae02514d85818fe0c32549ab4bfa3bf49