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

CVE-2026-42009: GnuTLS DTLS Packet Reordering DoS Flaw

CVE-2026-42009 is a denial of service vulnerability in GnuTLS affecting DTLS packet reordering logic. Attackers can exploit duplicate sequence numbers to cause service disruption. This article covers technical details, affected versions, impact assessment, and mitigation strategies.

Published: May 21, 2026

CVE-2026-42009 Overview

A flaw exists in GnuTLS affecting the Datagram Transport Layer Security (DTLS) packet reordering logic. The comparator function responsible for ordering DTLS packets by sequence number does not correctly handle packets with duplicate sequence numbers. A remote attacker can exploit this defect to trigger unstable packet ordering or undefined behavior, leading to a denial of service against any application linking GnuTLS for DTLS communication. The weakness is classified under [CWE-475] (Undefined Behavior for Input to API).

Critical Impact

A network-based attacker without authentication can cause a denial of service in DTLS endpoints by sending crafted packets with duplicate sequence numbers.

Affected Products

  • GnuTLS (versions implementing the affected DTLS packet reordering comparator)
  • Red Hat distributions shipping the affected GnuTLS package
  • Applications and services using GnuTLS for DTLS communication

Discovery Timeline

  • 2026-05-18 - CVE-2026-42009 published to the National Vulnerability Database (NVD)
  • 2026-05-18 - Last updated in the NVD database

Technical Details for CVE-2026-42009

Vulnerability Analysis

The vulnerability resides in the DTLS packet reordering subsystem of GnuTLS. DTLS preserves the security guarantees of TLS over unreliable datagram transports such as UDP. Because datagrams may arrive out of order, GnuTLS sorts buffered records by their DTLS sequence number using a comparator function.

The comparator does not define a stable ordering when two records carry identical sequence numbers. Comparator functions that return inconsistent results for equal inputs violate the contract required by standard sort routines, which depend on a strict weak ordering. The result is undefined behavior in the buffering and reordering paths.

An unauthenticated remote attacker who can deliver DTLS packets to a vulnerable peer can trigger this state by sending records with duplicated sequence numbers. The downstream effect is process instability or termination, producing a denial of service. The flaw affects availability only, with no impact on confidentiality or integrity.

Root Cause

The root cause is improper handling of equality in the DTLS sequence-number comparator. When the comparator receives two records with the same sequence number, it does not return a consistent ordering, leaving the sort result undefined. This maps to [CWE-475], where input to an API produces undefined behavior because the contract for the comparator is not satisfied.

Attack Vector

Exploitation requires only network reachability to a DTLS endpoint. No authentication, user interaction, or prior session state is needed beyond what a normal DTLS handshake or association allows. The attacker transmits DTLS records crafted with duplicate sequence numbers to drive the reordering buffer into the undefined code path.

No public proof-of-concept or in-the-wild exploitation has been reported. See the Red Hat CVE-2026-42009 Advisory and Red Hat Bug Report #2467279 for vendor technical details.

Detection Methods for CVE-2026-42009

Indicators of Compromise

  • Unexpected crashes, aborts, or restarts of services that terminate DTLS associations using GnuTLS
  • DTLS peers logging anomalous reordering, buffer state, or sequence-number errors
  • Inbound UDP traffic to DTLS ports containing repeated records with identical sequence numbers

Detection Strategies

  • Inventory hosts running GnuTLS and identify services exposing DTLS endpoints such as VPN concentrators, SIP, WebRTC, and CoAP gateways
  • Monitor process supervision logs for repeated termination of DTLS-handling services correlated with external UDP traffic
  • Inspect DTLS traffic with network analyzers for sequences of records sharing identical DTLS sequence numbers

Monitoring Recommendations

  • Alert on abnormal crash rates of services linked against libgnutls
  • Track packet capture statistics for duplicate DTLS sequence numbers from a single source
  • Correlate UDP source addresses associated with crashes for blocklisting at the network edge

How to Mitigate CVE-2026-42009

Immediate Actions Required

  • Apply vendor-supplied GnuTLS updates as soon as patched packages become available from your Linux distribution
  • Restrict network exposure of DTLS services to trusted networks and authenticated peers where feasible
  • Enable automatic restart of critical DTLS services through process supervision to limit the duration of service outages

Patch Information

At the time of publication, refer to the Red Hat CVE-2026-42009 Advisory and Red Hat Bug Report #2467279 for current package status and fix availability. Apply distribution updates for the gnutls package once released, then restart all services that link against the library so the patched code is loaded.

Workarounds

  • Limit DTLS endpoint exposure by firewalling UDP listeners to known client subnets
  • Where DTLS is not required, disable DTLS support in the application and use TLS over a reliable transport instead
  • Place rate limiting and anomaly detection on UDP traffic destined for DTLS services to reduce abuse potential
bash
# Configuration example: identify GnuTLS version and restart dependent services after patching
rpm -q gnutls
sudo dnf update gnutls
sudo systemctl restart <dtls-service-name>

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGnutls

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-475
  • Technical References
  • Red Hat CVE-2026-42009 Advisory

  • Red Hat Bug Report #2467279
  • Related CVEs
  • CVE-2026-42015: GnuTLS PKCS#12 DoS Vulnerability

  • CVE-2026-1584: GnuTLS DoS Vulnerability

  • CVE-2025-14831: GnuTLS DoS Vulnerability via Malicious Certificates

  • CVE-2024-28835: GnuTLS DoS Vulnerability in certtool
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