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

CVE-2026-5590: TCP Connection Race Condition Vulnerability

CVE-2026-5590 is a race condition flaw in TCP connection teardown that causes NULL pointer dereference and system crashes. This article covers the technical details, affected systems, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-5590 Overview

CVE-2026-5590 is a race condition in the Zephyr RTOS network stack that triggers a NULL pointer dereference during TCP connection teardown. When tcp_conn_search() returns NULL while processing an incoming SYN packet, a NULL pointer derived from stale context data is passed to tcp_backlog_is_full() and dereferenced without validation. The result is a crash of the affected device or service. The flaw is tracked under [CWE-476: NULL Pointer Dereference] and is exposed over the network, making it reachable by any attacker capable of sending TCP traffic to a vulnerable Zephyr-based device.

Critical Impact

A remote attacker can crash a Zephyr-based device by racing TCP teardown with new SYN packets, producing a denial-of-service condition on embedded and IoT systems.

Affected Products

  • Zephyr Project RTOS (network stack, TCP implementation)
  • Embedded and IoT devices built on Zephyr that expose TCP services
  • Downstream products integrating the vulnerable Zephyr TCP code

Discovery Timeline

  • 2026-04-05 - CVE-2026-5590 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-5590

Vulnerability Analysis

The defect resides in Zephyr's TCP receive path, specifically in the interaction between tcp_recv(), tcp_conn_search(), and tcp_backlog_is_full(). Under normal operation, tcp_conn_search() locates the connection context associated with an incoming segment. During a connection teardown that overlaps with the arrival of a new SYN packet, the connection can be released between lookup attempts. The teardown path leaves stale context references in the receive flow.

When the lookup subsequently returns NULL for the released connection, the code path still forwards a pointer derived from the stale context into tcp_backlog_is_full(). That function dereferences the pointer without checking it. The dereference faults and the network thread crashes, which on many Zephyr deployments halts the device or forces a watchdog-driven reboot.

The vulnerability is a classic concurrency defect: two valid code paths produce an invalid state when interleaved. Single-threaded testing does not reproduce it reliably, which is why the issue survived into shipped firmware.

Root Cause

The root cause is missing validation of the connection pointer after a teardown-induced lookup miss. The TCP receive logic assumes a non-NULL connection context when calling helper functions such as tcp_backlog_is_full(). Combined with the absence of synchronization between the teardown sequence and the SYN-processing path, the assumption breaks. See the GitHub Security Advisory for upstream technical detail.

Attack Vector

The vulnerability is reachable over the network. An attacker who can send TCP traffic to a Zephyr device repeatedly initiates and tears down TCP connections while injecting additional SYN packets. The attack does not require code execution on the target, but it does require timing precision to win the race window between connection release and SYN processing. Successful exploitation results in a crash and denial of service rather than code execution or data disclosure.

Detection Methods for CVE-2026-5590

Indicators of Compromise

  • Unexpected reboots or watchdog resets on Zephyr-based devices correlated with inbound TCP traffic bursts.
  • Crash logs or fault dumps referencing tcp_recv, tcp_conn_search, or tcp_backlog_is_full in the call stack.
  • Repeated short-lived TCP connection attempts from a single source followed by service unavailability.

Detection Strategies

  • Monitor network telemetry for high-rate SYN traffic targeting embedded device IP ranges, especially when paired with connection resets.
  • Correlate device-side crash or reset events with upstream packet captures to identify TCP teardown race patterns.
  • Inspect firmware build manifests to identify deployments running unpatched Zephyr TCP code.

Monitoring Recommendations

  • Aggregate device availability and reboot telemetry from IoT fleets into a centralized log platform for anomaly detection.
  • Capture full-packet traces on network segments hosting Zephyr devices when sustained service degradation is observed.
  • Alert on sudden drops in heartbeat or keepalive traffic from Zephyr endpoints that may indicate exploitation.

How to Mitigate CVE-2026-5590

Immediate Actions Required

  • Inventory all firmware images and devices that include the Zephyr TCP stack and identify exposed TCP services.
  • Apply the upstream Zephyr fix referenced in the security advisory and rebuild affected firmware.
  • Restrict network reachability of Zephyr-based devices to trusted segments until patched firmware is deployed.

Patch Information

The Zephyr Project has published a security advisory with patch details at the GitHub Security Advisory GHSA-4vqm-pw24-g9jp. Vendors integrating Zephyr should pull the corrected TCP source, rebuild firmware images, and distribute updates through their normal OTA or service channels.

Workarounds

  • Place vulnerable devices behind a stateful firewall that rate-limits SYN traffic and filters connection floods.
  • Disable or restrict any non-essential TCP listeners on Zephyr devices to reduce reachable attack surface.
  • Where feasible, enforce TCP connection allowlists so only known peers can initiate sessions with the device.

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.4

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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