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-43384

CVE-2026-43384: Linux Kernel TCP-AO Timing Attack Vulnerability

CVE-2026-43384 is an information disclosure flaw in the Linux kernel's TCP-AO implementation that exposes systems to timing attacks through non-constant MAC comparisons. This article covers technical details, impact, and patches.

Published: May 18, 2026

CVE-2026-43384 Overview

CVE-2026-43384 is a timing side-channel vulnerability in the Linux kernel's TCP Authentication Option (TCP-AO) implementation. The flaw resides in the Message Authentication Code (MAC) comparison routine within net/tcp-ao, which performed byte-by-byte comparisons instead of using a constant-time helper. An attacker measuring response latency across many probes can infer valid MAC bytes and forge authenticated TCP segments. The kernel maintainers resolved the issue by replacing the variable-time comparison with the constant-time helper function appropriate for cryptographic equality checks.

Critical Impact

Remote attackers may recover or forge TCP-AO MAC values through timing analysis, undermining the authenticity guarantees TCP-AO is designed to provide for BGP and other long-lived TCP sessions.

Affected Products

  • Linux kernel versions implementing TCP-AO (net/tcp-ao) prior to the upstream fix
  • Linux stable branches addressed by commits 080b0e21, 67edfec5, 8be6ed64, and a269cbdc
  • Distributions and appliances shipping vulnerable kernels with TCP-AO enabled

Discovery Timeline

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

Technical Details for CVE-2026-43384

Vulnerability Analysis

TCP-AO, defined in RFC 5925, authenticates TCP segments using a keyed MAC carried in a dedicated TCP option. The receiving stack computes the expected MAC and compares it to the value supplied by the peer. The vulnerable code path in net/tcp-ao used a comparison routine whose execution time varied based on how many leading bytes matched. This is a classic timing side channel [CWE-208].

An attacker who can send TCP segments to a TCP-AO protected endpoint and observe responses, retransmissions, or RST behavior can use statistical timing analysis to deduce the correct MAC byte-by-byte. Once a valid MAC is recovered, the attacker can inject authenticated segments into long-lived sessions such as BGP peering, breaking the integrity and authenticity properties TCP-AO is meant to guarantee.

Root Cause

The root cause is the use of a non-constant-time memory comparison for cryptographic equality. Standard comparison routines short-circuit on the first mismatched byte, leaking partial information about the expected MAC through execution time. Cryptographic code must use a constant-time helper that always processes all bytes regardless of where mismatches occur.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends crafted TCP segments containing guessed MAC values to a target with TCP-AO enabled. By measuring response timing across many trials, the attacker progressively narrows correct MAC bytes. The attack is most practical against systems where the attacker has stable network latency to the target, such as adjacent network segments or peering links.

The upstream patch replaces the variable-time comparison with the kernel's constant-time MAC equality helper. Refer to the Linux kernel commit 67edfec5 for the canonical fix.

Detection Methods for CVE-2026-43384

Indicators of Compromise

  • Unusually high volumes of TCP segments to TCP-AO protected ports (BGP port 179, custom services) from a single source
  • Repeated TCP segments with varying TCP-AO option MAC values targeting the same connection tuple
  • Unexpected session resets or route flaps on BGP peers using TCP-AO

Detection Strategies

  • Inspect kernel version strings against the fixed commits and flag hosts running pre-patch builds with TCP-AO enabled
  • Correlate packet captures on routing infrastructure for high-rate probing patterns against TCP-AO sessions
  • Alert on anomalous variance in TCP-AO authentication failures recorded by TCPAOBad and TCPAOKeyNotFound SNMP counters in /proc/net/netstat

Monitoring Recommendations

  • Track per-peer TCP-AO failure counters and trigger thresholds when failure rates spike
  • Log and review BGP session state transitions for unexpected resets that may indicate forged segment injection
  • Monitor network telemetry for sustained low-rate probing consistent with timing-attack data collection

How to Mitigate CVE-2026-43384

Immediate Actions Required

  • Inventory all Linux hosts and network appliances that have TCP-AO enabled, particularly BGP routers and route reflectors
  • Apply distribution kernel updates that incorporate the upstream constant-time MAC comparison fix
  • Where patching is delayed, restrict reachability to TCP-AO listeners using infrastructure ACLs and peer allowlists

Patch Information

The vulnerability is resolved in the Linux stable trees by the following commits: 080b0e21, 67edfec5, 8be6ed64, and a269cbdc. Rebuild custom kernels from a fixed tag or install vendor kernel packages that backport these commits.

Workarounds

  • Apply strict source-address filtering on routers and hosts so only known peers can reach TCP-AO protected ports
  • Use IPsec or out-of-band cryptographic transport for sensitive sessions until the kernel patch is deployed
  • Increase rate limiting on TCP segments destined to TCP-AO listeners to reduce the feasibility of timing measurements
bash
# Verify running kernel and confirm it includes the TCP-AO constant-time fix
uname -r
grep -E 'TCPAOGood|TCPAOBad|TCPAOKeyNotFound' /proc/net/netstat

# Restrict access to BGP/TCP-AO listeners to known peers (example with nftables)
nft add rule inet filter input tcp dport 179 ip saddr != { 192.0.2.1, 198.51.100.1 } drop

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.06%

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

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-43336: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43317: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43377: Linux Kernel Information Disclosure Flaw

  • CVE-2026-43393: Linux Kernel Information Disclosure Bug
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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