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-2026-24401

CVE-2026-24401: Avahi mDNS Daemon DoS Vulnerability

CVE-2026-24401 is a denial of service vulnerability in Avahi mDNS daemon caused by recursive CNAME records leading to stack exhaustion. This article covers the technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2026-24401 Overview

Avahi is a system which facilitates service discovery on a local network via the mDNS/DNS-SD protocol suite. A denial of service vulnerability exists in Avahi versions 0.9rc2 and below that allows remote attackers to crash the avahi-daemon through a segmentation fault. The vulnerability is triggered by sending an unsolicited mDNS response containing a recursive CNAME record, where the alias and canonical name point to the same domain (e.g., "h.local" as a CNAME for "h.local"). This causes unbounded recursion in the lookup_handle_cname function, leading to stack exhaustion and service termination.

Critical Impact

Remote attackers can crash the Avahi daemon on vulnerable systems, disrupting local network service discovery capabilities for all dependent applications including nss-mdns resolvers.

Affected Products

  • Avahi versions 0.9rc2 and below
  • Systems using record browsers with AVAHI_LOOKUP_USE_MULTICAST flag set
  • Applications dependent on nss-mdns for name resolution

Discovery Timeline

  • 2026-01-24 - CVE CVE-2026-24401 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-24401

Vulnerability Analysis

This vulnerability stems from improper handling of self-referential CNAME records in the Avahi mDNS implementation. The weakness is classified as CWE-674 (Uncontrolled Recursion), where the lookup_handle_cname function fails to implement adequate recursion depth limits when processing DNS CNAME chains.

When a malicious mDNS response is received containing a CNAME record that references itself (e.g., "h.local" pointing to "h.local"), the lookup function enters an infinite recursion loop. Each recursive call consumes stack memory, and without proper bounds checking, this leads to complete stack exhaustion and a segmentation fault that terminates the avahi-daemon process.

The vulnerability specifically affects record browsers where the AVAHI_LOOKUP_USE_MULTICAST flag is explicitly set. This includes record browsers created by resolvers used by nss-mdns, making the impact particularly significant for systems relying on multicast DNS for local hostname resolution.

Root Cause

The root cause is uncontrolled recursion in the CNAME resolution logic within the lookup_handle_cname function. The code does not validate whether a CNAME record creates a circular reference before following the alias chain, nor does it enforce a maximum recursion depth. This allows an attacker to craft a minimal malicious mDNS response that triggers infinite recursion until the process stack is exhausted.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction beyond having a victim system reachable on the same local network segment. An attacker sends a specially crafted unsolicited mDNS response packet to the target system.

The malicious packet contains a CNAME record with a circular reference where both the alias name and canonical name fields contain identical domain values. When the avahi-daemon processes this response as part of a lookup operation, it recursively follows the CNAME reference without detecting the cycle, resulting in stack exhaustion and a crash.

The attack is particularly effective because mDNS operates on multicast addresses, allowing a single malicious packet to potentially affect multiple vulnerable systems on the same network segment simultaneously.

Detection Methods for CVE-2026-24401

Indicators of Compromise

  • Unexpected avahi-daemon process crashes or restarts in system logs
  • Segmentation fault entries in syslog associated with avahi-daemon
  • Intermittent local hostname resolution failures via mDNS
  • Unusual mDNS traffic patterns containing self-referential CNAME records

Detection Strategies

  • Monitor system logs for avahi-daemon segfault signals and core dumps
  • Implement network monitoring for mDNS packets containing CNAME records with circular references
  • Deploy process monitoring to detect repeated avahi-daemon restarts indicative of exploitation
  • Analyze captured mDNS traffic for anomalous CNAME record patterns

Monitoring Recommendations

  • Configure alerting on avahi-daemon process state changes and unexpected terminations
  • Enable detailed mDNS packet logging at network boundaries where feasible
  • Implement watchdog monitoring for critical service discovery dependencies
  • Review system journal entries for recurring stack overflow or recursion-related errors

How to Mitigate CVE-2026-24401

Immediate Actions Required

  • Update Avahi to a version containing commit 78eab31128479f06e30beb8c1cbf99dd921e2524 or later
  • Disable avahi-daemon on systems where mDNS service discovery is not required
  • Implement network segmentation to limit mDNS traffic exposure
  • Monitor for exploitation attempts while patch deployment is in progress

Patch Information

The vulnerability has been patched in commit 78eab31128479f06e30beb8c1cbf99dd921e2524. Organizations should apply this fix by updating to a patched version of Avahi. For detailed information about the fix, refer to the GitHub Commit Update. Additional context is available in the GitHub Issue Discussion and the GitHub Security Advisory.

Workarounds

  • Disable Avahi services if mDNS functionality is not operationally required using systemctl disable --now avahi-daemon
  • Configure firewall rules to block incoming mDNS traffic (UDP port 5353) from untrusted network segments
  • Limit mDNS to trusted network interfaces only through Avahi configuration
  • Consider using alternative DNS resolution mechanisms where mDNS is not strictly necessary
bash
# Disable avahi-daemon service
sudo systemctl stop avahi-daemon
sudo systemctl disable avahi-daemon

# Alternative: Block mDNS traffic with firewall
sudo iptables -A INPUT -p udp --dport 5353 -j DROP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAvahi

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Technical References
  • GitHub Commit Update

  • GitHub Issue Discussion

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-68471: Avahi mDNS Daemon DoS Vulnerability

  • CVE-2025-68468: Avahi Daemon DoS Vulnerability

  • CVE-2025-68276: Avahi mDNS/DNS-SD DoS Vulnerability

  • CVE-2021-3468: Avahi Denial of Service (DoS) 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