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

CVE-2026-33602: DNS Service DoS Vulnerability

CVE-2026-33602 is a denial of service vulnerability affecting DNS services where a rogue backend sends crafted UDP responses, triggering out-of-bounds writes. This article covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-33602 Overview

CVE-2026-33602 is an out-of-bounds write vulnerability affecting DNSdist, a highly DNS-, DoS-, and abuse-aware loadbalancer. A rogue backend server can send a crafted UDP response with a query ID that is off by one from the maximum configured value, triggering an out-of-bounds write condition that leads to denial of service.

Critical Impact

This vulnerability allows remote attackers to crash DNSdist services through maliciously crafted UDP responses, potentially disrupting DNS resolution for dependent infrastructure.

Affected Products

  • DNSdist (specific affected versions detailed in vendor advisory)

Discovery Timeline

  • 2026-04-22 - CVE-2026-33602 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-33602

Vulnerability Analysis

This vulnerability is classified as CWE-122 (Heap-based Buffer Overflow), manifesting as an out-of-bounds write condition within DNSdist's UDP response processing logic. The flaw occurs when processing DNS responses from backend servers, specifically when the query ID in the response is crafted to be exactly one value off from the maximum configured query ID limit.

DNSdist uses query IDs to correlate outgoing DNS queries with their corresponding responses. When a malicious backend sends a response with a boundary-violating query ID, the application writes response data beyond the allocated buffer boundaries. This memory corruption condition destabilizes the DNSdist process and results in service termination.

The attack requires network access and the ability to act as a rogue backend server within the DNSdist configuration. While the attack complexity is elevated due to these prerequisites, successful exploitation does not require authentication or user interaction.

Root Cause

The root cause is improper boundary checking when validating query IDs in incoming UDP responses. The off-by-one error occurs because the validation logic fails to properly account for the maximum query ID boundary, allowing a query ID of max_configured_value + 1 to pass validation and subsequently trigger an out-of-bounds memory write operation.

Attack Vector

The attack is executed over the network by a compromised or malicious backend server configured in DNSdist. The attacker must:

  1. Be configured as a backend server in the target DNSdist instance, or compromise an existing backend
  2. Craft a UDP DNS response with a query ID set to the maximum configured value plus one
  3. Send the malicious response to the DNSdist instance

When DNSdist processes this response, the out-of-bounds write corrupts heap memory, causing the service to crash and denying DNS resolution services to clients relying on the affected instance.

Detection Methods for CVE-2026-33602

Indicators of Compromise

  • Unexpected DNSdist service crashes or restarts
  • Abnormal query ID values in DNS response traffic from backend servers
  • Memory corruption errors in DNSdist process logs
  • Sudden loss of DNS resolution capabilities

Detection Strategies

  • Monitor DNSdist process stability and implement alerting for unexpected terminations
  • Analyze DNS traffic between DNSdist and backend servers for anomalous query ID values
  • Deploy network intrusion detection rules to identify malformed UDP DNS responses
  • Review system logs for segmentation faults or memory access violations in DNSdist

Monitoring Recommendations

  • Implement continuous health monitoring for DNSdist instances with automatic failover
  • Enable verbose logging to capture query ID correlation anomalies
  • Deploy packet capture on backend server communication channels for forensic analysis
  • Monitor backend server integrity to detect compromise attempts

How to Mitigate CVE-2026-33602

Immediate Actions Required

  • Review and restrict the list of configured backend servers to trusted sources only
  • Implement network segmentation to limit which systems can communicate with DNSdist backend interfaces
  • Deploy redundant DNSdist instances to maintain availability during potential attacks
  • Monitor the DNSdist Security Advisory for patch availability

Patch Information

Consult the official DNSdist Security Advisory for specific patch versions and upgrade instructions. Apply the security update as soon as it becomes available for your deployment.

Workarounds

  • Restrict backend server configurations to only include fully trusted and monitored DNS servers
  • Implement firewall rules to limit UDP communication between DNSdist and backend servers
  • Deploy application-level monitoring to automatically restart DNSdist if crashes are detected
  • Consider implementing DNS response validation at the network level if available

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Technical References
  • DNSdist Security Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel 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