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

CVE-2025-32743: ConnMan DNS Proxy DoS Vulnerability

CVE-2025-32743 is a denial of service flaw in ConnMan through version 1.44 affecting DNS proxy operations. Attackers can crash the application or potentially execute code. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 25, 2026

CVE-2025-32743 Overview

A critical memory corruption vulnerability has been identified in ConnMan through version 1.44. The flaw exists in the ns_resolv function within dnsproxy.c, where the lookup string can be NULL or an empty string when the TC (Truncated) bit is set in a DNS response. This condition leads to incorrect length calculations and improper memcpy operations, enabling attackers to cause a denial of service through application crashes or potentially achieve arbitrary code execution.

Critical Impact

This 0-click vulnerability in ConnMan's DNS proxy can be exploited remotely without user interaction, potentially allowing attackers to crash network services or execute arbitrary code on affected systems.

Affected Products

  • ConnMan through version 1.44
  • ConnMan version 1.43
  • Systems utilizing ConnMan's DNS proxy functionality

Discovery Timeline

  • April 10, 2025 - CVE-2025-32743 published to NVD
  • April 11, 2025 - Last updated in NVD database

Technical Details for CVE-2025-32743

Vulnerability Analysis

The vulnerability resides in ConnMan's DNS proxy implementation, specifically in the ns_resolv function located in dnsproxy.c. When processing DNS responses with the TC (Truncated) bit set, the code fails to properly validate the lookup string before performing memory operations. The lookup string can become NULL or empty under these specific conditions, but subsequent code assumes a valid string is present.

This improper condition handling (CWE-392) results in incorrect length calculations being passed to memcpy operations. When the length calculation is performed on a NULL or empty lookup string, the resulting value can cause buffer operations to read or write memory outside the intended boundaries, leading to memory corruption.

The network-accessible nature of this vulnerability means attackers can trigger it remotely by sending specially crafted DNS responses. The attack requires no user interaction (0-click), making it particularly dangerous for systems exposed to untrusted network traffic.

Root Cause

The root cause is improper condition handling in the DNS response processing logic. When a DNS response arrives with the TC (Truncated) bit set, the code path in ns_resolv can result in a NULL or empty lookup string. The function fails to validate this condition before using the lookup value in subsequent length calculations and memory copy operations.

Specifically, at line 1688 in dnsproxy.c, the code does not adequately check whether the lookup string is valid before proceeding with operations that depend on a non-null, non-empty value. This oversight allows corrupted state to propagate through the memcpy calls, causing memory corruption.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker positioned to intercept or inject DNS traffic can exploit this vulnerability by:

  1. Intercepting legitimate DNS queries from a ConnMan-managed system
  2. Crafting a malicious DNS response with the TC (Truncated) bit set
  3. Manipulating the response to trigger the NULL or empty lookup string condition
  4. Sending the crafted response to cause memory corruption in the target's DNS proxy

The vulnerability mechanism involves DNS response handling where truncated responses trigger improper string processing. When the TC bit indicates truncation, the ns_resolv function may receive a NULL or empty lookup parameter, which then cascades into length miscalculations during memcpy operations. Technical details are available in the 0-click Vulnerability Report and the ConnMan source code reference.

Detection Methods for CVE-2025-32743

Indicators of Compromise

  • ConnMan daemon crashes or unexpected restarts, particularly during DNS resolution operations
  • Segmentation fault messages in system logs referencing dnsproxy.c or ns_resolv
  • Unusual DNS traffic patterns, especially responses with the TC (Truncated) bit set
  • Memory corruption indicators in process dumps related to the connmand process

Detection Strategies

  • Monitor for abnormal terminations of the connmand process and configure automatic alerting
  • Implement network traffic analysis to detect malformed DNS responses with suspicious TC bit patterns
  • Deploy intrusion detection signatures that identify DNS response anomalies targeting ConnMan systems
  • Enable core dump collection for ConnMan processes to facilitate forensic analysis after crashes

Monitoring Recommendations

  • Configure syslog monitoring for ConnMan-related crash events and segmentation faults
  • Implement DNS traffic baseline monitoring to identify unusual response patterns
  • Set up process health monitoring for connmand with automatic restart alerting
  • Deploy network sensors capable of deep packet inspection on DNS traffic

How to Mitigate CVE-2025-32743

Immediate Actions Required

  • Identify all systems running ConnMan version 1.44 or earlier in your environment
  • Evaluate exposure by determining which systems process untrusted DNS traffic
  • Consider disabling ConnMan's DNS proxy functionality where not strictly required
  • Implement network-level controls to filter potentially malicious DNS responses at perimeter devices

Patch Information

No official vendor patch information was available at the time of this analysis. Organizations should monitor the ConnMan Git repository for security updates addressing this vulnerability. When a patch becomes available, prioritize deployment on internet-facing and critical systems.

Workarounds

  • Configure firewall rules to restrict DNS traffic to trusted resolvers only
  • Implement DNS-over-HTTPS or DNS-over-TLS to encrypt and validate DNS traffic
  • Deploy a separate DNS resolver in front of ConnMan to pre-validate responses
  • Consider using alternative network management solutions on critical systems until a patch is available
bash
# Configuration example: Restrict DNS traffic to trusted resolver only
# Add to iptables rules to limit DNS resolution sources
iptables -A OUTPUT -p udp --dport 53 -d <trusted_dns_ip> -j ACCEPT
iptables -A OUTPUT -p udp --dport 53 -j DROP
iptables -A INPUT -p udp --sport 53 -s <trusted_dns_ip> -j ACCEPT
iptables -A INPUT -p udp --sport 53 -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/TechConnman

  • SeverityCRITICAL

  • CVSS Score9.0

  • EPSS Probability0.45%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-392
  • Technical References
  • Notion 0-Click Vulnerability Report

  • Kernel Git Source Code Reference
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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