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

CVE-2026-23247: Linux Kernel Information Disclosure Flaw

CVE-2026-23247 is an information disclosure vulnerability in the Linux kernel involving TCP source port leakage via SYN cookie side-channel. This article covers the technical details, affected versions, and mitigations.

Published: March 20, 2026

CVE-2026-23247 Overview

A vulnerability has been resolved in the Linux kernel related to the TCP secure sequence number generation mechanism. The fix reverts a previous change (commit 28ee1b746f49) that had downgraded timestamp offsets to per-host level. This vulnerability allows off-path TCP source port leakage via a SYN cookie side-channel attack.

The original change was made when tcp_tw_recycle was removed in 2017, but it inadvertently created a security weakness. The resolution brings back TCP ports in timestamp (TS) offset randomization, which helps prevent the leakage of TCP source port information. As an optimization, the fix performs a single siphash() computation to provide both an ISN (Initial Sequence Number) and a TS offset.

Critical Impact

Off-path attackers can exploit this vulnerability to leak TCP source port information through SYN cookie timing side-channels, potentially enabling connection hijacking or reconnaissance attacks.

Affected Products

  • Linux Kernel (various versions prior to the fix)

Discovery Timeline

  • March 18, 2026 - CVE-2026-23247 published to NVD
  • March 18, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23247

Vulnerability Analysis

This vulnerability exists in the Linux kernel's TCP secure sequence number generation subsystem. The core issue stems from the previous decision to downgrade timestamp offsets from per-connection to per-host granularity. While this simplification was considered safe after the removal of tcp_tw_recycle in 2017, it inadvertently created a side-channel vulnerability.

The weakness allows remote attackers to infer TCP source port information by analyzing timing characteristics of SYN cookies. This type of side-channel attack can be performed off-path, meaning attackers don't need to be in the direct network path between the client and server.

Root Cause

The root cause is the removal of port-specific entropy from the TCP timestamp offset calculation. When timestamp offsets were downgraded to per-host values, it created predictable patterns that could be exploited through careful timing analysis of SYN cookie responses. The original per-connection randomization using ports provided necessary entropy to prevent such inference attacks.

Attack Vector

The attack leverages the predictable nature of per-host timestamp offsets. An off-path attacker can send crafted packets and analyze the timing characteristics of SYN cookie responses to deduce the TCP source ports being used by a target host. This information could be used for:

  • Connection hijacking attempts
  • Targeted denial of service attacks
  • Network reconnaissance and fingerprinting
  • Bypassing certain firewall or intrusion detection rules

The fix addresses this by reintroducing port values into the timestamp offset calculation and optimizing the implementation to use a single siphash() call for both the Initial Sequence Number (ISN) and timestamp offset generation.

Detection Methods for CVE-2026-23247

Indicators of Compromise

  • Unusual patterns of SYN packets from multiple source IPs targeting the same destination
  • Anomalous timing analysis activity in network traffic
  • Increased volume of TCP connection attempts with timing correlation patterns
  • Evidence of port scanning followed by targeted connection attempts

Detection Strategies

  • Monitor network traffic for patterns consistent with SYN cookie timing side-channel attacks
  • Implement deep packet inspection to identify unusual TCP timestamp analysis behavior
  • Use intrusion detection systems configured to alert on suspicious TCP handshake patterns
  • Deploy kernel-level monitoring to track TCP sequence number generation anomalies

Monitoring Recommendations

  • Enable TCP connection logging to track unusual connection patterns
  • Configure network monitoring tools to baseline normal SYN cookie behavior
  • Implement alerting for statistical anomalies in TCP timestamp distributions
  • Review kernel audit logs for signs of exploitation attempts

How to Mitigate CVE-2026-23247

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix
  • Review network security controls for exposure to off-path attacks
  • Consider implementing additional network segmentation to limit attacker reconnaissance capabilities
  • Monitor systems for signs of exploitation while awaiting patch deployment

Patch Information

The vulnerability has been fixed in the Linux kernel through multiple commits. The fix reverts the per-host timestamp offset approach and reintroduces port-specific randomization using an optimized single siphash() computation.

Relevant kernel commits:

  • Kernel Git Commit 165573e41f2f
  • Kernel Git Commit 46e5b0d7cf55
  • Kernel Git Commit eae2f14ab2ef

Workarounds

  • Deploy network-level defenses such as rate limiting SYN packets to reduce attack surface
  • Consider enabling SYN proxy features on network security appliances
  • Implement strict ingress filtering to limit off-path attack opportunities
  • Use network segmentation to isolate critical systems from potential reconnaissance

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Log

  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-31428: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw
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