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-2024-23944

CVE-2024-23944: Apache ZooKeeper Information Disclosure

CVE-2024-23944 is an information disclosure vulnerability in Apache ZooKeeper's persistent watchers that exposes znode paths through missing ACL checks. This article covers technical details, affected versions, and fixes.

Updated: January 22, 2026

CVE-2024-23944 Overview

CVE-2024-23944 is an information disclosure vulnerability in Apache ZooKeeper's persistent watchers handling mechanism. The vulnerability stems from a missing Access Control List (ACL) check when persistent watchers are triggered, allowing an attacker with access to a parent znode to monitor child znodes they shouldn't have visibility into.

When an attacker attaches a persistent watcher using the addWatch command to a parent znode they already have access to, the ZooKeeper server fails to perform ACL validation when the watcher is triggered. As a result, the full path of znodes that trigger watch events is exposed to the watcher owner, even if they lack permission to access those child znodes directly.

Critical Impact

While this vulnerability does not expose znode data directly, the disclosed znode paths can contain sensitive information such as usernames, login IDs, or other identifying data embedded in the path structure, making this a potentially critical information disclosure issue.

Affected Products

  • Apache ZooKeeper versions prior to 3.9.2
  • Apache ZooKeeper versions prior to 3.8.4

Discovery Timeline

  • 2024-03-15 - CVE-2024-23944 published to NVD
  • 2025-07-03 - Last updated in NVD database

Technical Details for CVE-2024-23944

Vulnerability Analysis

This vulnerability (CWE-862: Missing Authorization) occurs in Apache ZooKeeper's persistent watcher implementation. ZooKeeper uses Access Control Lists (ACLs) to manage permissions for znodes, the fundamental data units in its hierarchical namespace. Persistent watchers, introduced to allow clients to receive notifications about changes to znodes, should respect these ACL boundaries.

The security flaw manifests when a user with legitimate access to a parent znode creates a persistent watcher on that node. When child znodes are created, modified, or deleted, the watcher receives event notifications containing the full path of the affected znode. The authorization check that should verify the watcher owner's access to each child znode is missing, creating an information disclosure channel.

Root Cause

The root cause of CVE-2024-23944 is the absence of ACL validation in the persistent watcher notification pathway. When watch events are triggered by changes to child znodes, the ZooKeeper server dispatches notifications to registered watchers without verifying that the watcher owner has the necessary permissions to access the child znode information. This authorization gap violates the principle of least privilege and circumvents the intended access control model.

Attack Vector

An attacker exploiting this vulnerability requires local access and must first obtain legitimate access to a parent znode in the ZooKeeper hierarchy. The attack proceeds as follows:

  1. The attacker authenticates to the ZooKeeper ensemble with credentials that grant access to a parent znode
  2. Using the addWatch command, the attacker registers a persistent watcher on the accessible parent znode
  3. When other users or applications create, modify, or delete child znodes beneath the watched parent, the attacker receives watch events
  4. These events contain the full paths of affected child znodes, regardless of the attacker's ACL permissions on those children
  5. The attacker harvests sensitive information embedded in znode paths, such as usernames, session identifiers, or application-specific data

The vulnerability requires the attacker to have some level of authenticated access to the ZooKeeper system, limiting exposure compared to unauthenticated attacks.

Detection Methods for CVE-2024-23944

Indicators of Compromise

  • Unusual addWatch command activity on parent znodes, particularly from accounts with limited permissions
  • Watch registrations on high-level znodes that contain sensitive child paths
  • Patterns of persistent watcher creation followed by passive monitoring behavior
  • Accounts that register watchers but rarely perform other ZooKeeper operations

Detection Strategies

  • Audit ZooKeeper client connections and monitor for addWatch commands targeting sensitive namespace areas
  • Review authentication logs to identify accounts with minimal permissions registering persistent watchers
  • Implement alerting for watcher registrations on znodes containing user-specific or sensitive data paths
  • Compare watcher registration patterns against expected application behavior

Monitoring Recommendations

  • Enable detailed ZooKeeper audit logging to capture all addWatch operations with client identity information
  • Monitor for anomalous watcher registration patterns that may indicate reconnaissance activity
  • Establish baselines for normal watcher usage and alert on deviations
  • Regularly review ACL configurations to minimize exposure of sensitive path information

How to Mitigate CVE-2024-23944

Immediate Actions Required

  • Upgrade Apache ZooKeeper to version 3.9.2 or 3.8.4 which contain the fix for this vulnerability
  • Audit existing znode paths to identify those containing sensitive information
  • Review ACL configurations and restrict access to parent znodes where possible
  • Consider restructuring znode hierarchies to avoid embedding sensitive data in paths

Patch Information

Apache has released patched versions that address this vulnerability. Users should upgrade to Apache ZooKeeper version 3.9.2 or 3.8.4 depending on their version branch. The fix ensures proper ACL checks are performed when persistent watcher notifications are triggered.

For detailed information about the security fix, refer to the Apache Mailing List Thread and the OpenWall OSS-Security Post.

Workarounds

  • Restrict authentication and limit the number of accounts with access to parent znodes
  • Redesign znode path structures to avoid including sensitive identifiers like usernames or login IDs
  • Implement network-level segmentation to limit which clients can connect to ZooKeeper
  • Use ZooKeeper's SASL authentication to ensure all connections are properly authenticated and auditable
  • Monitor and alert on persistent watcher creation as an interim detection measure
bash
# Verify ZooKeeper version and upgrade if necessary
echo "stat" | nc localhost 2181 | grep "Zookeeper version"

# If running vulnerable version, upgrade to patched version
# For version 3.8.x branch:
# Upgrade to 3.8.4
# For version 3.9.x branch:
# Upgrade to 3.9.2

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechApache Zookeeper

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-862
  • Technical References
  • OpenWall OSS-Security Post
  • Vendor Resources
  • Apache Mailing List Thread
  • Related CVEs
  • CVE-2026-24308: Apache ZooKeeper Information Disclosure

  • CVE-2026-24281: Apache ZooKeeper Auth Bypass Vulnerability

  • CVE-2024-51504: Apache ZooKeeper Auth Bypass Vulnerability

  • CVE-2023-44981: Apache ZooKeeper Auth Bypass 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