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

CVE-2026-26017: CoreDNS Auth Bypass Vulnerability

CVE-2026-26017 is an authentication bypass flaw in CoreDNS that allows attackers to circumvent DNS access controls through plugin execution order. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-26017 Overview

CoreDNS is a widely-deployed DNS server that implements a modular architecture through chainable plugins. A logical vulnerability in CoreDNS versions prior to 1.14.2 allows DNS access controls to be bypassed due to the default execution order of plugins. Security plugins such as acl are evaluated before the rewrite plugin, resulting in a Time-of-Check Time-of-Use (TOCTOU) flaw that can undermine access control policies.

Critical Impact

Attackers with low privileges can bypass DNS access controls by exploiting the plugin execution order, potentially gaining unauthorized access to sensitive DNS records protected by ACL policies.

Affected Products

  • coredns.io coredns (versions prior to 1.14.2)

Discovery Timeline

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

Technical Details for CVE-2026-26017

Vulnerability Analysis

This vulnerability represents a classic Time-of-Check Time-of-Use (TOCTOU) race condition flaw (CWE-367) in the CoreDNS plugin architecture. The root issue stems from how CoreDNS processes DNS requests through its plugin chain. When the acl plugin performs access control checks, it evaluates the original DNS query before the rewrite plugin has the opportunity to modify the request. This creates a window where an attacker can craft a request that passes ACL validation but is subsequently rewritten to access protected resources.

The vulnerability can be exploited over the network and requires low privileges to execute. The changed scope in the vulnerability assessment indicates that successful exploitation can impact resources beyond the vulnerable component itself, potentially exposing confidential DNS records that should be protected by access control policies.

Root Cause

The vulnerability originates from a design flaw in the default plugin execution order within CoreDNS. Security-focused plugins like acl are positioned earlier in the plugin chain than transformation plugins like rewrite. This architectural decision means that access control decisions are made against the original request rather than the final, potentially rewritten request. When the rewrite plugin subsequently modifies the DNS query, the access control check performed earlier becomes invalidated, creating the TOCTOU condition.

Attack Vector

An attacker can exploit this vulnerability by crafting DNS queries that are designed to pass the initial ACL checks but are then rewritten to target protected DNS zones or records. The attack proceeds as follows:

  1. The attacker identifies protected DNS resources behind ACL rules
  2. The attacker constructs a DNS query that targets an allowed resource
  3. The acl plugin validates the request and permits it through
  4. The rewrite plugin modifies the query to target the protected resource
  5. The modified query is processed, bypassing the intended access controls

This exploitation technique allows unauthorized information disclosure of DNS records that should be restricted by access control policies. The attack requires network access to the CoreDNS server and assumes the attacker has at least minimal authenticated access to the DNS service.

Detection Methods for CVE-2026-26017

Indicators of Compromise

  • Unusual DNS query patterns that appear to target allowed resources but result in responses from protected zones
  • DNS query logs showing rewrite activity immediately following ACL-permitted queries to unexpected destinations
  • Anomalous access patterns where users or systems receive DNS responses for records they should not have access to

Detection Strategies

  • Monitor CoreDNS logs for discrepancies between ACL-allowed queries and final resolved records
  • Implement DNS query analysis to detect patterns of queries that exploit rewrite rules following ACL checks
  • Deploy network-level monitoring to correlate DNS request/response pairs and identify unauthorized information disclosure

Monitoring Recommendations

  • Enable verbose logging for both acl and rewrite plugins to capture the full query transformation chain
  • Establish baseline DNS query patterns and alert on deviations that may indicate exploitation attempts
  • Integrate CoreDNS logs with SIEM solutions to correlate potential bypass attempts with other security events

How to Mitigate CVE-2026-26017

Immediate Actions Required

  • Upgrade CoreDNS to version 1.14.2 or later immediately
  • Review and audit existing ACL and rewrite plugin configurations for potential bypass scenarios
  • Consider temporarily disabling the rewrite plugin if immediate upgrade is not possible and ACL enforcement is critical
  • Implement network segmentation to limit exposure of CoreDNS servers to trusted networks only

Patch Information

CoreDNS has released version 1.14.2 which addresses this TOCTOU vulnerability. The patch modifies the plugin execution order or evaluation logic to ensure access control checks account for potential query rewrites. Organizations should upgrade to this version as soon as possible.

For detailed patch information, refer to the GitHub CoreDNS Release v1.14.2 and the GitHub Security Advisory GHSA-c9v3-4pv7-87pr.

Workarounds

  • Manually reorder plugins in the Corefile configuration to ensure rewrite is processed before acl where architecturally feasible
  • Implement duplicate access control checks at the network level using firewall rules or DNS proxy filters
  • Review and restrict rewrite rules to prevent transformations that could target ACL-protected resources
  • Deploy additional monitoring and alerting for any DNS queries that involve both ACL and rewrite plugin activity
bash
# Configuration example - Review Corefile plugin order
# Ensure critical security plugins are positioned appropriately
# Upgrade to CoreDNS 1.14.2+ to properly address this vulnerability
kubectl set image deployment/coredns coredns=coredns/coredns:1.14.2 -n kube-system

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechCoredns

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Technical References
  • GitHub CoreDNS Release v1.14.2
  • Vendor Resources
  • GitHub Security Advisory GHSA-c9v3-4pv7-87pr
  • Related CVEs
  • 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 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