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

CVE-2026-33595: DoQ and DoH3 DOS Vulnerability

CVE-2026-33595 is a denial of service vulnerability affecting DoQ and DoH3 connections that allows attackers to trigger excessive memory allocation through error responses. This post covers technical details, impact, and mitigation.

Published: April 23, 2026

CVE-2026-33595 Overview

CVE-2026-33595 is a Resource Exhaustion vulnerability affecting DNSDist that allows remote attackers to trigger excessive memory allocation. The vulnerability exists in the handling of DNS-over-QUIC (DoQ) and DNS-over-HTTP/3 (DoH3) connections, where error responses are not properly released until the connection terminates. A malicious client can exploit this flaw by generating a large number of error responses over a single connection, causing memory resources to accumulate and potentially leading to denial of service conditions.

Critical Impact

Remote attackers can exhaust server memory resources by generating excessive error responses over DoQ and DoH3 connections, potentially causing service disruption without requiring authentication.

Affected Products

  • DNSDist (DoQ and DoH3 implementations)

Discovery Timeline

  • April 22, 2026 - CVE-2026-33595 published to NVD
  • April 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33595

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue lies in improper resource management within DNSDist's DNS-over-QUIC and DNS-over-HTTP/3 connection handlers. When processing requests that generate error responses, certain memory resources are allocated but not properly released during the connection lifecycle. Instead, these resources persist until the connection is fully terminated.

The attack can be executed remotely over the network without any authentication requirements or user interaction. While the vulnerability does not compromise data confidentiality or integrity, it poses a risk to service availability by enabling memory exhaustion attacks.

Root Cause

The root cause stems from improper resource lifecycle management in DNSDist's DoQ and DoH3 protocol implementations. When error responses are generated, associated memory allocations are not freed incrementally but are held until connection closure. This design flaw allows resources to accumulate unboundedly during long-lived connections, creating a memory leak scenario that can be deliberately triggered by attackers.

Attack Vector

An attacker can exploit this vulnerability by establishing a persistent DoQ or DoH3 connection to a vulnerable DNSDist server and then sending a stream of malformed or invalid DNS queries that trigger error responses. Since the resources associated with these error responses are not released until the connection ends, each error response contributes to growing memory consumption.

The attack requires only network access to the target DNS server's DoQ (typically UDP port 853) or DoH3 endpoints. No authentication or special privileges are needed, making this vulnerability easily exploitable by any remote attacker who can reach the DNS service.

For detailed technical information about the vulnerability mechanism, refer to the DNSDist Security Advisory.

Detection Methods for CVE-2026-33595

Indicators of Compromise

  • Unusual memory growth patterns in DNSDist processes during periods of DoQ/DoH3 activity
  • Single client connections generating an abnormally high number of DNS error responses
  • Memory utilization trending upward without corresponding increases in legitimate DNS query volume
  • Long-lived DoQ or DoH3 connections from suspicious source IP addresses

Detection Strategies

  • Monitor DNSDist process memory consumption and alert on sustained growth patterns
  • Implement logging and analysis of DNS error response rates per connection
  • Track connection duration metrics for DoQ and DoH3 sessions to identify anomalous long-lived connections
  • Deploy network monitoring to detect high volumes of malformed DNS queries from single sources

Monitoring Recommendations

  • Configure memory usage thresholds and alerting for DNSDist services
  • Enable detailed connection logging for DoQ and DoH3 protocols to track error response patterns
  • Implement rate monitoring for DNS error responses correlated with source IP and connection metadata
  • Set up automated alerts for connections that persist beyond expected durations while generating errors

How to Mitigate CVE-2026-33595

Immediate Actions Required

  • Review the DNSDist Security Advisory for the latest patch information
  • Apply available security updates to DNSDist installations as soon as they become available
  • Consider implementing connection-level rate limiting for DoQ and DoH3 protocols
  • Monitor memory utilization on DNSDist servers for signs of exploitation

Patch Information

Security patches and remediation guidance are provided in the official DNSDist Security Advisory. Organizations should prioritize updating to patched versions of DNSDist that properly release resources during error response handling.

Workarounds

  • Implement connection-level rate limiting to restrict the number of queries per DoQ/DoH3 connection
  • Configure maximum connection duration limits to force periodic connection re-establishment
  • Deploy resource quotas or cgroups to limit DNSDist process memory consumption
  • Consider temporarily disabling DoQ and DoH3 endpoints if they are not critical to operations while awaiting patches
bash
# Example configuration to limit connection parameters (adjust based on your DNSDist version)
# Consult DNSDist documentation for current syntax

# Set maximum number of queries per connection
setMaxQueriesPerConnection(1000)

# Configure connection idle timeout (in seconds)
setDoHConnectionIdleTimeout(30)

# Enable resource monitoring
setVerboseHealthChecks(true)

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 Score5.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-770
  • Technical References
  • DNSDist Security Advisory
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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