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

CVE-2026-32934: CoreDNS DNS-over-QUIC DoS Vulnerability

CVE-2026-32934 is a denial of service flaw in CoreDNS DNS-over-QUIC that allows attackers to cause memory exhaustion and OOM-kill through unbounded goroutine growth. This post covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-32934 Overview

CoreDNS is a pluggable DNS server widely deployed as the default DNS service in Kubernetes clusters. CVE-2026-32934 affects the DNS-over-QUIC (DoQ) server in CoreDNS versions prior to 1.14.3. A remote, unauthenticated attacker can trigger unbounded goroutine and memory growth by opening many QUIC streams and sending only a single byte per stream. The flaw enables memory exhaustion and OOM-kill of the CoreDNS process, disrupting DNS resolution across all dependent services. The issue is tracked as [CWE-770: Allocation of Resources Without Limits or Throttling].

Critical Impact

An unauthenticated remote attacker can exhaust CoreDNS memory and trigger an OOM-kill, disrupting DNS resolution across affected infrastructure.

Affected Products

  • CoreDNS versions prior to 1.14.3
  • Deployments exposing the DNS-over-QUIC (DoQ) server plugin
  • Kubernetes clusters and cloud-native environments running vulnerable CoreDNS builds

Discovery Timeline

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

Technical Details for CVE-2026-32934

Vulnerability Analysis

The vulnerability resides in the DoQ server's stream-handling logic. CoreDNS uses a worker pool to process incoming QUIC streams, but the implementation does not bound concurrent stream acceptance. When the worker pool is saturated, the server still spawns a new goroutine per accepted stream to wait for an available worker token. Attackers can open arbitrarily many streams, each consuming goroutine stack memory and runtime metadata. The memory footprint grows linearly with attacker-controlled stream count until the process is killed by the operating system.

Root Cause

Two defects combine to enable the attack. First, goroutine creation is unbounded relative to the worker pool capacity, violating backpressure principles. Second, active workers call io.ReadFull() to read the two-byte DoQ length prefix without applying a per-stream read deadline. An attacker who sends only the first byte causes the worker to block indefinitely waiting for the second byte. This pins every worker, ensuring the queued goroutines accumulate without drain. The combination is a classic resource exhaustion pattern [CWE-770].

Attack Vector

Exploitation requires only network reachability to the DoQ listener. The attacker establishes a QUIC connection and opens many streams, writing exactly one byte to each before pausing. No authentication, user interaction, or valid DNS query is required. Because the read on each stream blocks indefinitely and new streams continue spawning goroutines, the CoreDNS process grows in memory until the host's OOM killer terminates it. Refer to the GitHub Security Advisory GHSA-2wpx-qpw2-g5h5 for additional technical context.

Detection Methods for CVE-2026-32934

Indicators of Compromise

  • Sudden, sustained growth in CoreDNS process resident memory (RSS) without a corresponding rise in legitimate query volume
  • Goroutine counts in CoreDNS Prometheus metrics climbing into the tens or hundreds of thousands
  • Repeated OOM-kill events for CoreDNS pods or processes in system logs
  • Large numbers of half-open QUIC streams from a single source IP or small set of IPs

Detection Strategies

  • Monitor the go_goroutines and process_resident_memory_bytes Prometheus metrics exposed by CoreDNS for anomalous baselines
  • Inspect QUIC connection telemetry on UDP port 853 for clients opening many streams with minimal payload bytes
  • Correlate kernel oom-killer events targeting CoreDNS with concurrent traffic spikes on DoQ listeners

Monitoring Recommendations

  • Alert on CoreDNS pod restarts caused by exit code 137 (SIGKILL from OOM)
  • Track per-source-IP QUIC stream counts and flag clients exceeding normal request patterns
  • Forward CoreDNS logs and runtime metrics to a centralized analytics platform for longitudinal analysis

How to Mitigate CVE-2026-32934

Immediate Actions Required

  • Upgrade CoreDNS to version 1.14.3 or later, which contains the official fix
  • Audit Kubernetes and service mesh deployments to identify any CoreDNS instances exposing DoQ
  • Restrict DoQ listener exposure to trusted network ranges using firewall or network policy rules
  • Set memory limits on CoreDNS pods so OOM-kill events are contained and observable

Patch Information

The maintainers fixed the issue in CoreDNS Release v1.14.3. The patch enforces per-stream read deadlines and bounds goroutine creation against worker pool capacity. Operators should pull the updated container image or binary and roll out across all CoreDNS replicas. Verify the running version with coredns -version after deployment.

Workarounds

  • No official workarounds exist according to the vendor advisory
  • Disabling the DoQ plugin in the Corefile removes exposure if DNS-over-QUIC is not required
  • Place CoreDNS behind a QUIC-aware proxy that enforces stream-count and idle-timeout limits as a temporary compensating control
bash
# Disable the DoQ listener in Corefile until patched
# Remove or comment the quic:// server block:
# quic://. {
#     forward . 1.1.1.1
# }

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechCoredns

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • CoreDNS Release v1.14.3

  • GitHub Security Advisory GHSA-2wpx-qpw2-g5h5
  • Related CVEs
  • CVE-2026-32936: CoreDNS DNS-over-HTTPS DoS Vulnerability

  • CVE-2026-26018: CoreDNS Denial of Service Vulnerability

  • CVE-2025-68151: CoreDNS Server DoS Vulnerability

  • CVE-2025-47950: CoreDNS DNS-over-QUIC DoS 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