Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2023-32067

CVE-2023-32067: C-ares Denial of Service Vulnerability

CVE-2023-32067 is a denial of service vulnerability in c-ares asynchronous resolver library. Attackers can forge malformed UDP packets to force graceful shutdowns. This article covers technical details, affected versions, and mitigation.

Published: February 11, 2026

CVE-2023-32067 Overview

CVE-2023-32067 is a denial of service vulnerability affecting c-ares, an asynchronous resolver library widely used for DNS resolution in various applications. The vulnerability allows an attacker to forge malformed UDP packets with a length of 0 and send them to a target resolver. When the target resolver receives these crafted packets, it erroneously interprets the 0-length response as a graceful shutdown of the connection, effectively disrupting DNS resolution services.

Critical Impact

Attackers can remotely disrupt DNS resolution services by sending specially crafted UDP packets, causing denial of service conditions in applications relying on c-ares for DNS queries.

Affected Products

  • c-ares_project c-ares (versions prior to 1.19.1)
  • Fedora 37 and Fedora 38
  • Debian Linux 10.0 and 11.0

Discovery Timeline

  • 2023-05-25 - CVE-2023-32067 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-32067

Vulnerability Analysis

This vulnerability exploits a flaw in how c-ares processes incoming UDP DNS responses. The c-ares library fails to properly validate the length field of incoming UDP packets used for DNS resolution. When a target resolver sends a DNS query, an attacker can intercept or forge a response packet containing a length value of 0. The c-ares library misinterprets this zero-length packet as an indication that the connection should be gracefully terminated, rather than recognizing it as malformed input that should be discarded.

The attack is particularly effective because it targets the fundamental DNS resolution mechanism, and the forged packets can be sent remotely over the network without requiring any authentication or user interaction. Applications and services that depend on c-ares for DNS resolution become unable to resolve hostnames, leading to service disruptions.

Root Cause

The root cause of CVE-2023-32067 is improper input validation (CWE-400: Uncontrolled Resource Consumption). The c-ares library does not adequately validate the length field in incoming UDP packets. Specifically, the code path that handles UDP responses does not check for zero-length packets and incorrectly treats them as a signal to close the connection. This design flaw allows attackers to manipulate the resolver's state by sending crafted packets.

Attack Vector

The attack is network-based and can be executed remotely. An attacker positioned to send UDP packets to the target resolver can exploit this vulnerability. The attack flow involves:

  1. The target system running c-ares initiates a DNS query over UDP
  2. The attacker intercepts the query or monitors for DNS traffic from the target
  3. The attacker crafts a malformed UDP response packet with a length field set to 0
  4. The attacker sends this forged packet to the target resolver
  5. The c-ares library on the target interprets the zero-length packet as a connection shutdown signal
  6. DNS resolution fails, causing denial of service for dependent applications

The vulnerability does not require authentication, user interaction, or elevated privileges to exploit. The attacker needs network access to send UDP packets to the target system, either through direct network access or by being positioned along the network path.

Detection Methods for CVE-2023-32067

Indicators of Compromise

  • Unexpected DNS resolution failures across multiple applications
  • Unusual volume of zero-length UDP packets on DNS-related ports (typically port 53)
  • Application logs showing repeated DNS query timeouts or connection reset events
  • Network traffic analysis revealing malformed DNS response packets with zero-length payloads

Detection Strategies

  • Monitor network traffic for anomalous UDP packets with zero-length payloads targeting DNS resolution services
  • Implement intrusion detection rules to flag UDP packets with length field set to 0 on DNS ports
  • Review application logs for patterns of DNS resolution failures that may indicate active exploitation
  • Deploy network-based anomaly detection to identify unusual DNS response patterns

Monitoring Recommendations

  • Enable verbose logging in applications using c-ares to capture DNS resolution events and errors
  • Configure network monitoring tools to alert on suspicious UDP traffic patterns targeting port 53
  • Implement SIEM rules to correlate DNS failure events across multiple systems that may indicate a coordinated attack
  • Monitor system resource utilization for signs of degraded performance due to DNS resolution issues

How to Mitigate CVE-2023-32067

Immediate Actions Required

  • Upgrade c-ares to version 1.19.1 or later immediately on all affected systems
  • Review and update all applications and dependencies that bundle or rely on c-ares
  • Implement network-level filtering to drop suspicious zero-length UDP packets where feasible
  • Monitor DNS resolution services for signs of exploitation during the patching process

Patch Information

The c-ares project has addressed this vulnerability in version 1.19.1. The patch implements proper validation of UDP packet lengths, ensuring that zero-length packets are correctly identified as malformed and discarded rather than triggering connection termination. Organizations should update to this version or later.

Patches and updates are available from multiple sources:

  • GitHub Release cares-1_19_1
  • GitHub Security Advisory GHSA-9g78-jv2r-p7vc
  • Debian Security Advisory DSA-5419
  • Debian LTS Announcement
  • Fedora Package Announcements
  • Gentoo GLSA 202310-09

Workarounds

  • Implement network segmentation to limit exposure of systems running vulnerable c-ares versions
  • Deploy network-level packet inspection to filter zero-length UDP packets before they reach vulnerable systems
  • Consider using alternative DNS resolution mechanisms temporarily while patching is in progress
  • Enable rate limiting on DNS services to reduce the impact of potential exploitation attempts
bash
# Update c-ares on Debian/Ubuntu systems
sudo apt update
sudo apt install --only-upgrade libc-ares2

# Update c-ares on Fedora systems
sudo dnf update c-ares

# Verify installed c-ares version
dpkg -l | grep c-ares   # Debian/Ubuntu
rpm -qa | grep c-ares   # Fedora/RHEL

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechC Ares

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.38%

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

  • NVD-CWE-noinfo
  • Technical References
  • GitHub Release caress-1_19_1

  • GitHub Security Advisory GHSA-9g78-jv2r-p7vc

  • Debian LTS Announcement 2023-06

  • Fedora Package Announcement B5Z5XFNXTNPTCBBVXFDNZQVLLIE6VRBY

  • Fedora Package Announcement UBFWILTA33LOSV23P44FGTQQIDRJHIY7

  • Gentoo GLSA 202310-09

  • NetApp Security Advisory ntap-20240605-0004

  • Debian Security Advisory DSA-5419
  • Related CVEs
  • CVE-2024-25629: C-ares Library DoS Vulnerability

  • CVE-2025-31498: c-ares Use-After-Free Vulnerability
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