The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-43452

CVE-2026-43452: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43452 is a buffer overflow flaw in the Linux kernel netfilter x_tables module that allows out-of-bounds memory reads. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43452 Overview

CVE-2026-43452 is an out-of-bounds read vulnerability in the Linux kernel's netfilter subsystem, specifically in the x_tables option walkers. The flaw resides in the xt_tcpudp and xt_dccp modules, where option-walking loops can read one byte past the end of the option buffer. When the final byte of the options area contains a non-single-byte option kind, the walker dereferences op[i + 1] without confirming that index i + 1 falls within the option length.

Critical Impact

A network-adjacent attacker can trigger out-of-bounds reads in kernel memory, potentially leading to kernel panics, denial of service, or limited information disclosure from adjacent memory.

Affected Products

  • Linux kernel netfilter subsystem (xt_tcpudp module)
  • Linux kernel netfilter subsystem (xt_dccp module)
  • Multiple stable Linux kernel branches receiving backported fixes

Discovery Timeline

  • 2026-05-08 - CVE-2026-43452 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43452

Vulnerability Analysis

The vulnerability exists in the option-walking logic used by netfilter match modules xt_tcpudp and xt_dccp. These walkers iterate through the TCP, UDP, or DCCP options area, advancing the index using the construct i += op[i + 1] ? : 1. The expression reads the length byte at op[i + 1] to determine the next option's offset.

When the loop reaches the final byte of the option area and that byte represents a multi-byte option kind, the walker reads op[i + 1] even though index i + 1 lies beyond the allocated option region. The result is a one-byte out-of-bounds read of kernel memory.

The fix introduces an explicit i == optlen - 1 boundary check before dereferencing op[i + 1], ensuring the walker stops at the last valid index instead of speculatively reading the length of a non-existent option.

Root Cause

The root cause is missing boundary validation in the option-parsing loop. The original code optimistically assumes that any non-zero option kind has an accompanying length byte at i + 1. This assumption fails when the option kind appears at the absolute end of the options buffer, producing an out-of-bounds read [CWE-125].

Attack Vector

An attacker can craft network packets containing TCP, UDP, or DCCP options whose final byte is a non-single-byte option kind without a trailing length byte. When such packets traverse a system using iptables or ip6tables rules that invoke xt_tcpudp or xt_dccp matching, the kernel walker reads beyond the option buffer. Repeated triggering can produce kernel instability, while uninitialized or adjacent memory contents may influence match decisions.

No verified public exploit code is available. The vulnerability mechanism is described in the upstream commits referenced in the Linux kernel stable tree.

Detection Methods for CVE-2026-43452

Indicators of Compromise

  • Unexpected kernel oops or panic entries in dmesg referencing xt_tcpudp or xt_dccp functions
  • KASAN (Kernel Address Sanitizer) reports flagging out-of-bounds reads in netfilter option walkers
  • Inbound traffic containing malformed TCP, UDP, or DCCP option payloads terminating in non-single-byte option kinds

Detection Strategies

  • Enable KASAN in test environments and replay suspicious packet captures to surface the out-of-bounds read
  • Audit running kernel versions against the fixed commits listed in the stable kernel git tree to identify unpatched hosts
  • Inspect netfilter rulesets for use of the tcp, udp, or dccp match extensions, which load the vulnerable modules

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on netfilter-related crashes
  • Monitor network telemetry for malformed TCP/UDP/DCCP option fields, particularly truncated option sequences
  • Track host availability metrics for Linux gateways and firewalls running stateful packet inspection rules

How to Mitigate CVE-2026-43452

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced in the official commits and reboot affected hosts
  • Inventory all Linux systems performing packet filtering with iptables, nftables compatibility layers, or ip6tables and prioritize patching
  • Verify backported fixes are present in distribution kernels before deploying to production

Patch Information

The vulnerability is resolved across multiple Linux stable branches via the following commits: 5b18b8b, 9b94f0e, ae1e126, bc18551, c2a4453, c39f84e, cfe7702, and d048003. Each patch adds an i == optlen - 1 guard before dereferencing the option length byte in the affected walkers.

Workarounds

  • Remove or replace iptables rules that rely on the tcp, udp, or dccp match extensions where feasible
  • Drop malformed packets at upstream network devices using sanity checks on TCP, UDP, and DCCP option lengths
  • Unload the xt_dccp kernel module on hosts that do not require DCCP filtering using modprobe -r xt_dccp

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel Commit: 5b18b8b

  • Kernel Commit: 9b94f0e

  • Kernel Commit: ae1e126

  • Kernel Commit: bc18551

  • Kernel Commit: c2a4453

  • Kernel Commit: c39f84e

  • Kernel Commit: cfe7702

  • Kernel Commit: d048003
  • Related CVEs
  • CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow Flaw

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43337: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43341: Linux Kernel Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English