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

CVE-2025-68468: Avahi Daemon DoS Vulnerability

CVE-2025-68468 is a denial of service flaw in Avahi daemon that allows attackers to crash the service using malicious CNAME records. This post explains its technical details, affected versions, impact, and mitigation steps.

Updated: January 22, 2026

CVE-2025-68468 Overview

CVE-2025-68468 is a Denial of Service vulnerability affecting Avahi, the popular open-source system that facilitates service discovery on local networks via the mDNS/DNS-SD protocol suite. The vulnerability allows attackers to crash the avahi-daemon by sending specially crafted unsolicited announcements containing CNAME resource records that point to other resource records with short TTLs. When these TTLs expire, an assertion failure causes the daemon to crash, disrupting network service discovery capabilities.

Critical Impact

Remote attackers on the local network can crash avahi-daemon, disrupting mDNS/DNS-SD service discovery for all network clients relying on Avahi for device and service discovery.

Affected Products

  • Avahi 0.9-rc2 and earlier versions
  • Linux distributions shipping vulnerable Avahi packages
  • Systems utilizing mDNS/DNS-SD for local network service discovery

Discovery Timeline

  • 2026-01-12 - CVE-2025-68468 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68468

Vulnerability Analysis

This vulnerability stems from an incorrect assertion in the Avahi core browsing functionality. The CWE-617 classification indicates a "Reachable Assertion" vulnerability, where an assertion statement can be triggered by attacker-controlled input, causing the application to terminate abnormally.

The attack exploits the CNAME record handling mechanism in avahi-daemon. When the daemon receives unsolicited mDNS announcements containing CNAME records that reference other records with very short TTL values, it follows the CNAME chain. Once the referenced records' TTLs expire, the daemon attempts to process a callback for a key that no longer matches the expected lookup key, triggering an assertion failure that terminates the process.

Root Cause

The root cause is an overly strict assertion check in avahi-core/browse.c that assumed the callback key would always match the lookup key. This assumption fails when processing CNAME record chains where the original record has expired. The assertion assert(avahi_key_equal(b->key, l->key)) was triggered inappropriately during normal CNAME resolution scenarios involving expired TTLs, causing the daemon to crash rather than handle the edge case gracefully.

Attack Vector

The attack is network-accessible and can be executed by any device on the local network segment. An attacker can craft and send unsolicited mDNS announcements containing:

  1. A CNAME resource record pointing to a target record
  2. The target record configured with an extremely short TTL (e.g., 1 second)

When the TTL expires and Avahi attempts to invoke the user callback for the expired record, the assertion check fails, crashing the daemon. This attack requires no authentication or user interaction, making it straightforward to execute against any vulnerable Avahi installation on the same network.

The security patch removes the incorrect assertion that was causing the crash:

c
                 lookup_drop_cname(l, interface, protocol, 0, r);
             else {
                 /* It's a normal record, so let's call the user callback */
-                assert(avahi_key_equal(b->key, l->key));
 
                 b->callback(b, interface, protocol, event, r, flags, b->userdata);
             }

Source: GitHub Commit

Detection Methods for CVE-2025-68468

Indicators of Compromise

  • Unexpected avahi-daemon process crashes or restarts in system logs
  • Core dumps containing assertion failure messages from avahi-core/browse.c
  • Unusual mDNS traffic patterns showing CNAME records with very short TTL values
  • Service discovery failures reported by applications relying on Avahi

Detection Strategies

  • Monitor for mDNS announcements containing CNAME records with TTLs under 5 seconds
  • Set up process monitoring to alert on repeated avahi-daemon crashes
  • Review system logs for assertion failure messages mentioning avahi_key_equal
  • Implement network-level monitoring for anomalous mDNS/DNS-SD traffic patterns

Monitoring Recommendations

  • Configure systemd or init system to log and alert on avahi-daemon service failures
  • Deploy network intrusion detection rules for suspicious mDNS traffic patterns
  • Enable core dump collection to facilitate forensic analysis of crashes
  • Monitor Avahi-dependent services for connectivity issues that may indicate exploitation

How to Mitigate CVE-2025-68468

Immediate Actions Required

  • Update Avahi to a patched version containing commit f66be13d7f31a3ef806d226bf8b67240179d309a
  • Review and apply available security updates from your Linux distribution
  • Consider temporarily disabling Avahi if service discovery is not critical to operations
  • Implement network segmentation to limit exposure to untrusted devices

Patch Information

The vulnerability has been addressed in the Avahi project. The fix removes the incorrect assertion that caused the crash, allowing the daemon to properly handle CNAME records with expired TTLs. For complete technical details, refer to the GitHub Security Advisory. The patch commit is available at the Avahi GitHub repository.

Workarounds

  • Disable avahi-daemon if mDNS/DNS-SD service discovery is not required for operations
  • Restrict mDNS traffic using firewall rules to trusted network segments only
  • Configure process supervisors to automatically restart avahi-daemon after crashes
  • Deploy network access control to limit which devices can send mDNS announcements
bash
# Disable avahi-daemon if not needed
sudo systemctl stop avahi-daemon
sudo systemctl disable avahi-daemon

# Alternatively, restrict mDNS traffic to specific interfaces
# Edit /etc/avahi/avahi-daemon.conf
# [server]
# allow-interfaces=eth0

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-617
  • Technical References
  • GitHub Commit Update

  • GitHub Issue Discussion

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-24401: Avahi mDNS Daemon DoS Vulnerability

  • CVE-2025-68471: Avahi mDNS 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