Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-26018

CVE-2026-26018: CoreDNS Denial of Service Vulnerability

CVE-2026-26018 is a denial of service vulnerability in CoreDNS that allows attackers to crash the DNS server with crafted queries. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-26018 Overview

CVE-2026-26018 is a denial of service vulnerability affecting CoreDNS, a popular DNS server that chains plugins. The vulnerability exists in CoreDNS's loop detection plugin and allows an attacker to crash the DNS server by sending specially crafted DNS queries. The flaw stems from the use of a predictable pseudo-random number generator (PRNG) for generating a secret query name, combined with a fatal error handler that terminates the entire process.

Critical Impact

Attackers can exploit this vulnerability to crash CoreDNS servers remotely without authentication, causing DNS service outages that may affect all dependent services and applications.

Affected Products

  • CoreDNS versions prior to 1.14.2
  • Systems running CoreDNS with the loop detection plugin enabled
  • Kubernetes clusters using CoreDNS as the default DNS provider

Discovery Timeline

  • 2026-03-06 - CVE-2026-26018 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-26018

Vulnerability Analysis

This vulnerability is classified under CWE-337 (Predictable Seed in Pseudo-Random Number Generator). The root issue lies in how CoreDNS generates secret query names used by its loop detection mechanism. The loop detection plugin is designed to prevent DNS query loops, but its implementation uses a predictable PRNG that can be exploited by attackers who can predict or brute-force the generated secret values.

When an attacker successfully predicts the secret query name and sends a crafted DNS query, the loop detection plugin incorrectly identifies it as a loop condition. The fatal error handler then terminates the entire CoreDNS process rather than gracefully handling the condition, resulting in a complete denial of service.

Root Cause

The vulnerability originates from two compounding issues:

  1. Predictable PRNG Usage: The loop detection plugin uses a predictable pseudo-random number generator to create secret query names. This allows attackers to potentially predict or enumerate the secret values used for loop detection.

  2. Fatal Error Handler: When a loop is detected (legitimately or through exploitation), the plugin triggers a fatal error that terminates the entire CoreDNS process instead of implementing a more graceful error handling mechanism.

The combination of these weaknesses allows remote, unauthenticated attackers to reliably crash CoreDNS servers.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Analyzing or predicting the secret query name generated by the vulnerable PRNG
  2. Crafting DNS queries that include the predicted secret query name
  3. Sending the malicious queries to the target CoreDNS server
  4. Triggering the loop detection mechanism, which invokes the fatal error handler
  5. Causing the CoreDNS process to terminate, resulting in DNS service disruption

The attack can be executed remotely over the network, making it particularly dangerous for internet-facing DNS servers and Kubernetes clusters that rely on CoreDNS for service discovery.

Detection Methods for CVE-2026-26018

Indicators of Compromise

  • Unexpected CoreDNS process terminations or restarts in system logs
  • Sudden DNS resolution failures across dependent services
  • Unusual DNS query patterns with suspicious query names targeting the CoreDNS server
  • Container or pod restart events in Kubernetes clusters running CoreDNS

Detection Strategies

  • Monitor CoreDNS logs for fatal error messages related to loop detection
  • Implement DNS query logging to identify anomalous query patterns
  • Set up alerting for CoreDNS process crashes or unexpected restarts
  • Deploy network monitoring to detect high-volume DNS query attacks

Monitoring Recommendations

  • Configure centralized logging for all CoreDNS instances to correlate crash events
  • Implement health checks and automated alerting for DNS service availability
  • Monitor Kubernetes cluster events for CoreDNS pod restart patterns
  • Review DNS traffic baselines to identify deviations that may indicate exploitation attempts

How to Mitigate CVE-2026-26018

Immediate Actions Required

  • Upgrade CoreDNS to version 1.14.2 or later immediately
  • Review CoreDNS deployment configurations to ensure the loop plugin is properly configured
  • Implement rate limiting for DNS queries if not already in place
  • Consider temporary workarounds if immediate patching is not possible

Patch Information

The vulnerability has been patched in CoreDNS version 1.14.2. The fix addresses both the predictable PRNG issue and improves the error handling mechanism to prevent process termination. Organizations should upgrade to this version or later as soon as possible.

For detailed patch information, refer to the GitHub CoreDNS Release v1.14.2 and the GitHub Security Advisory GHSA-h75p-j8xm-m278.

Workarounds

  • If immediate patching is not possible, consider disabling the loop detection plugin temporarily while weighing the risk of DNS loops against denial of service
  • Implement network-level access controls to restrict DNS query sources to trusted networks
  • Deploy redundant CoreDNS instances to maintain service availability in case of exploitation
  • Use a web application firewall or DNS firewall to filter suspicious DNS query patterns
bash
# Verify CoreDNS version and upgrade if necessary
coredns -version

# For Kubernetes deployments, update the CoreDNS image
kubectl set image deployment/coredns coredns=coredns/coredns:1.14.2 -n kube-system

# Verify the upgrade was successful
kubectl get pods -n kube-system -l k8s-app=kube-dns -o jsonpath='{.items[*].spec.containers[*].image}'

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 Score7.5

  • EPSS Probability0.05%

  • 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-337
  • Technical References
  • GitHub CoreDNS Release v1.14.2
  • Vendor Resources
  • GitHub Security Advisory GHSA-h75p-j8xm-m278
  • Related CVEs
  • CVE-2025-68151: CoreDNS Server DoS Vulnerability

  • CVE-2025-47950: CoreDNS DNS-over-QUIC DoS Vulnerability

  • CVE-2026-26017: CoreDNS Auth Bypass Vulnerability
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