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
    • 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-2025-5994

CVE-2025-5994: DNS Rebirthday Attack DoS Vulnerability

CVE-2025-5994 is a denial of service flaw affecting DNS caching resolvers supporting EDNS Client Subnet. The Rebirthday Attack enables cache poisoning through transaction ID matching. This article covers technical details, affected systems, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-5994 Overview

A multi-vendor DNS cache poisoning vulnerability named "Rebirthday Attack" has been discovered in caching resolvers that support EDNS Client Subnet (ECS). This vulnerability affects Unbound DNS resolver when compiled with ECS support using the --enable-subnet flag and configured to send ECS information along with queries to upstream name servers. The attack exploits the birthday paradox principle to match DNS transaction IDs and inject malicious DNS responses into the resolver cache.

Resolvers supporting ECS must segregate outgoing queries to accommodate different outgoing ECS information. This architectural requirement re-opens resolvers to birthday paradox attacks, allowing adversaries to attempt matching DNS transaction IDs in order to cache non-ECS poisonous replies. Successful exploitation could lead to DNS cache poisoning, redirecting legitimate traffic to attacker-controlled infrastructure.

Critical Impact

Attackers can poison DNS resolver caches via network-based attacks without authentication, potentially redirecting users to malicious servers for phishing, malware distribution, or man-in-the-middle attacks.

Affected Products

  • Unbound DNS Resolver (compiled with --enable-subnet ECS support)
  • Unbound configurations using send-client-subnet option
  • Unbound configurations using client-subnet-zone or client-subnet-always-forward options

Discovery Timeline

  • 2025-07-16 - CVE-2025-5994 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-5994

Vulnerability Analysis

This vulnerability targets the fundamental design of EDNS Client Subnet (ECS) implementations in DNS resolvers. When ECS is enabled, resolvers must maintain separate query states for different client subnets, effectively multiplying the number of outstanding queries. This increased query volume creates more opportunities for an attacker to guess the correct DNS transaction ID through statistical probability.

The "Rebirthday Attack" leverages the birthday paradox—a mathematical principle stating that in a set of randomly chosen values, the probability of collisions increases dramatically with volume. Traditional DNS cache poisoning defenses rely on the difficulty of guessing the 16-bit transaction ID within a narrow time window. However, with ECS-enabled resolvers handling segregated queries for multiple subnets, attackers gain additional injection opportunities per resolver query cycle.

The vulnerability is classified under CWE-349 (Acceptance of Extraneous Untrusted Data With Trusted Data), as the resolver may accept poisoned responses that appear legitimate due to transaction ID matching.

Root Cause

The root cause lies in the architectural requirement for ECS-enabled resolvers to maintain separate outgoing query states for different client subnet information. This design decision, while necessary for ECS functionality, inadvertently increases the attack surface by:

  1. Creating multiple simultaneous pending queries with predictable transaction ID patterns
  2. Expanding the time window during which malicious responses can be injected
  3. Reducing the effective entropy of transaction ID matching through statistical probability exploitation

The vulnerability specifically manifests when resolvers are configured with send-client-subnet, client-subnet-zone, or client-subnet-always-forward options, which enable active ECS query forwarding to upstream nameservers.

Attack Vector

The attack operates over the network without requiring authentication or user interaction. An adversary positioned to send DNS responses to the target resolver can flood it with spoofed replies containing malicious DNS records. The attack sequence involves:

  1. Triggering multiple DNS queries from the vulnerable resolver for a target domain
  2. Exploiting ECS query segregation to increase the number of outstanding transactions
  3. Racing legitimate responses with crafted poisonous replies matching predicted transaction IDs
  4. Successfully injecting malicious cache entries when a transaction ID collision occurs

The network-based attack vector makes this vulnerability particularly concerning for public-facing DNS resolvers and recursive nameservers serving large user populations.

Detection Methods for CVE-2025-5994

Indicators of Compromise

  • Unusual volume of DNS responses from unexpected source IP addresses
  • DNS cache entries with unexpectedly short or manipulated TTL values
  • Anomalous resolver response patterns for popular domains
  • Evidence of DNS transaction ID collisions in resolver logs
  • Users reporting redirects to suspicious domains for legitimate hostnames

Detection Strategies

  • Monitor DNS resolver logs for high volumes of duplicate or near-simultaneous responses
  • Implement DNSSEC validation to cryptographically verify response authenticity
  • Deploy network intrusion detection rules for anomalous DNS response patterns
  • Compare cached DNS records against known-good authoritative responses
  • Analyze resolver query/response ratios for statistical anomalies

Monitoring Recommendations

  • Enable verbose logging on Unbound resolvers to capture transaction ID patterns
  • Configure alerting for cache entry changes on critical domain names
  • Implement real-time monitoring of upstream DNS response sources
  • Deploy DNS-specific security monitoring tools to detect poisoning attempts
  • Establish baseline metrics for normal resolver behavior to identify deviations

How to Mitigate CVE-2025-5994

Immediate Actions Required

  • Review Unbound configuration for ECS-related options (send-client-subnet, client-subnet-zone, client-subnet-always-forward)
  • Disable ECS functionality if not operationally required by removing the configuration options
  • Apply vendor patches as soon as they become available from NLnet Labs
  • Enable DNSSEC validation to reject unsigned or incorrectly signed responses
  • Consider implementing additional source port randomization if supported

Patch Information

Security patches and detailed mitigation guidance are available from the vendor. Refer to the NLnet Labs CVE-2025-5994 Advisory for official patch information. Debian-based systems should consult the Debian LTS Announcement for package updates.

Organizations running Unbound should upgrade to patched versions as specified in the vendor advisory. The patch addresses the query segregation logic to reduce birthday attack susceptibility while maintaining ECS functionality.

Workarounds

  • Disable ECS support by removing --enable-subnet from compilation or disabling related runtime options
  • Implement strict egress filtering to limit response sources to legitimate upstream resolvers
  • Deploy DNSSEC validation to cryptographically verify response integrity
  • Use DNS-over-HTTPS or DNS-over-TLS to encrypt resolver-to-upstream communications
  • Consider network segmentation to limit attacker access to resolver infrastructure
bash
# Unbound configuration to disable ECS forwarding (temporary workaround)
# Comment out or remove ECS-related options in unbound.conf

# Before (vulnerable configuration):
# send-client-subnet: 0.0.0.0/0
# client-subnet-zone: "example.com"
# client-subnet-always-forward: yes

# After (mitigated configuration):
# Ensure no ECS forwarding options are active
# Enable DNSSEC validation as additional protection
module-config: "validator iterator"
auto-trust-anchor-file: "/var/lib/unbound/root.key"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechUnbound

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/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:U/V:C/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-349
  • Technical References
  • NLnet Labs CVE-2025-5994 Advisory

  • Debian LTS Announcement
  • Related CVEs
  • CVE-2024-43167: Unbound NULL Pointer Dereference DoS Flaw

  • CVE-2022-30699: Nlnetlabs Unbound DoS Vulnerability

  • CVE-2024-1488: Unbound Privilege Escalation Vulnerability
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