A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43190

CVE-2026-43190: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43190 is a buffer overflow flaw in the Linux kernel's netfilter xt_tcpmss component that allows out-of-bounds memory reads. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43190 Overview

CVE-2026-43190 is an out-of-bounds read vulnerability in the Linux kernel's netfilter subsystem, specifically within the xt_tcpmss match module. The flaw resides in net/netfilter/xt_tcpmss.c (lines 53-68), where the TCP option parser reads op[i+1] without first validating the remaining option length. When the last byte of the option field is not End-of-List (0) or No-Operation (1), the parser indexes past the optlen boundary. This results in a read beyond the stack buffer _opt or into adjacent payload memory. The Linux kernel maintainers resolved the issue by adding a length check before reading optlen.

Critical Impact

An out-of-bounds read in kernel-space TCP option parsing can leak adjacent kernel memory contents and potentially trigger denial-of-service conditions on systems applying xt_tcpmss rules to attacker-controlled traffic.

Affected Products

  • Linux kernel versions containing the unpatched net/netfilter/xt_tcpmss.c parser
  • Distributions shipping the xt_tcpmss netfilter match module
  • Systems using iptables or nftables rules that invoke TCP MSS matching

Discovery Timeline

  • 2026-05-06 - CVE-2026-43190 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43190

Vulnerability Analysis

The xt_tcpmss module inspects TCP options to match packets carrying a specific Maximum Segment Size (MSS) value. The parser iterates over the TCP option field, reading the option kind at op[i] and the option length at op[i+1]. The original implementation failed to verify that i+1 remained within the bounds defined by optlen before dereferencing op[i+1]. When a crafted TCP segment terminates the option field with a non-EOL and non-NOP byte, the loop reads one byte past the validated option region. The read may target the remainder of the stack buffer _opt or, depending on layout, payload bytes following it. This is classified as an out-of-bounds read [CWE-125].

Root Cause

The defect is a missing boundary check. The parser assumed any option byte other than EOL or NOP is followed by a valid length byte. The fix introduces an explicit i + 1 < optlen check before accessing op[i+1], ensuring the parser never reads beyond the option region copied into _opt.

Attack Vector

Exploitation requires an attacker to send a TCP segment whose option field ends with a single non-trivial option byte to a host evaluating xt_tcpmss rules. The malformed option triggers the kernel parser to read one byte past the buffer. The vulnerability manifests during in-kernel packet evaluation. See the upstream patches for the exact parser changes: Linux Kernel Commit f895191 and Linux Kernel Commit 07a9b32.

// No verified proof-of-concept code is available.
// Refer to the upstream commits for the corrected parser logic
// that adds the i + 1 < optlen bounds check before reading op[i+1].

Detection Methods for CVE-2026-43190

Indicators of Compromise

  • Kernel oops, KASAN reports, or slab-out-of-bounds warnings referencing tcpmss_mt or xt_tcpmss in dmesg
  • Unexpected netfilter-related crashes on hosts using TCP MSS matching rules
  • Anomalous inbound TCP segments containing truncated or malformed option fields directed at filtering hosts

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) in test environments to surface out-of-bounds reads in the netfilter path
  • Audit running kernel versions against the patched commits listed in the references to confirm whether the fix is applied
  • Inspect iptables and nftables rule sets for active use of the tcpmss match, which scopes exposure

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on xt_tcpmss, KASAN, or BUG: strings
  • Monitor host stability metrics on firewalls and routers that apply MSS-clamping or MSS-matching rules
  • Capture and review TCP option fields in flow telemetry where feasible to identify malformed option sequences

How to Mitigate CVE-2026-43190

Immediate Actions Required

  • Apply the upstream Linux kernel patches and rebuild or update to a fixed kernel package from your distribution
  • Identify hosts with active xt_tcpmss rules and prioritize them for patching, particularly internet-facing firewalls
  • Restart affected systems after kernel update to load the corrected xt_tcpmss module

Patch Information

The vulnerability is fixed across multiple stable branches. Reference the corresponding upstream commits: Linux Kernel Commit 5e13d0a, Linux Kernel Commit 735ee85, Linux Kernel Commit 8b300f7, Linux Kernel Commit cd5beda, Linux Kernel Commit eaedc0b, and Linux Kernel Commit f6c412d. Consume the fix through your distribution's security update channel.

Workarounds

  • Remove tcpmss match rules from iptables and nftables configurations on hosts that cannot be patched immediately
  • Unload the xt_tcpmss module where it is not required: rmmod xt_tcpmss and blacklist it in /etc/modprobe.d/
  • Apply upstream traffic filtering to drop TCP segments with malformed option fields before they reach vulnerable hosts
bash
# Verify whether xt_tcpmss is loaded and in use
lsmod | grep xt_tcpmss
iptables-save | grep -i tcpmss
nft list ruleset | grep -i tcpmss

# Temporarily unload the module if no rules require it
sudo rmmod xt_tcpmss

# Persistently prevent loading until patched
echo 'blacklist xt_tcpmss' | sudo tee /etc/modprobe.d/disable-xt_tcpmss.conf

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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 07a9b32

  • Linux Kernel Commit 5e13d0a

  • Linux Kernel Commit 735ee85

  • Linux Kernel Commit 8b300f7

  • Linux Kernel Commit cd5beda

  • Linux Kernel Commit eaedc0b

  • Linux Kernel Commit f6c412d

  • Linux Kernel Commit f895191
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-46232: 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