A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-44981

CVE-2023-44981: Apache ZooKeeper Auth Bypass Vulnerability

CVE-2023-44981 is an authorization bypass flaw in Apache ZooKeeper that allows unauthorized endpoints to join clusters and gain read-write access. This article covers technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2023-44981 Overview

CVE-2023-44981 is an authorization bypass vulnerability in Apache ZooKeeper's SASL Quorum Peer authentication mechanism. When quorum.auth.enableSasl=true is configured, the server performs authorization by matching the instance portion of the SASL authentication ID against the entries listed in zoo.cfg. Because the instance portion is optional, an authentication identity formatted as eve@EXAMPLE.COM causes the authorization check to be skipped entirely. An attacker can join the ensemble as a quorum peer and propagate forged changes to the leader, obtaining full read-write access to the data tree. Quorum Peer authentication is not enabled by default, which reduces the exposed population.

Critical Impact

An unauthenticated network attacker can join a ZooKeeper quorum and gain complete read-write control over the cluster data tree.

Affected Products

  • Apache ZooKeeper versions prior to 3.7.2
  • Apache ZooKeeper 3.8.x prior to 3.8.3 and 3.9.0
  • Debian Linux 10, 11, and 12 distributions shipping affected ZooKeeper packages

Discovery Timeline

  • 2023-10-11 - CVE-2023-44981 published to NVD
  • 2025-04-23 - Last updated in NVD database

Technical Details for CVE-2023-44981

Vulnerability Analysis

Apache ZooKeeper coordinates distributed systems through an ensemble of quorum peers that elect a leader and replicate state. To prevent rogue nodes from joining the ensemble, ZooKeeper supports Simple Authentication and Security Layer (SASL) authentication between quorum peers. The authorization step compares the SASL identity against the configured server list in zoo.cfg.

The flaw classified under [CWE-639] resides in how ZooKeeper parses SASL authentication IDs. A SASL identity typically follows the Kerberos pattern primary/instance@REALM, where the instance component is optional. When the instance component is absent, the code path skips the membership check rather than rejecting the identity. An attacker who can reach the quorum communication port can present an arbitrary principal such as eve@EXAMPLE.COM and successfully join as a peer.

Once admitted, the rogue peer participates in leader election and state replication. It can submit znode writes that the legitimate leader accepts and propagates to clients, undermining the integrity guarantees that distributed services such as Kafka, HBase, and SolrCloud rely on.

Root Cause

The root cause is an authorization logic error in the quorum peer SASL handler. The code treats a missing instance component as a non-error condition and bypasses the server list lookup. The check should fail closed and reject any identity that cannot be unambiguously mapped to a configured ensemble member.

Attack Vector

Exploitation requires network access to the quorum election and communication ports, typically 2888 and 3888. The attacker must know that SASL Quorum Peer authentication is enabled and supply a valid Kerberos ticket for any principal within the trusted realm. No prior privileges within the cluster, no user interaction, and no local access are required. Confidentiality and integrity are both at high risk because the attacker reads and modifies the entire data tree.

No verified public proof-of-concept code is available. The vulnerability mechanism is described in the Apache Thread Discussion and the OpenWall OSS Security Post.

Detection Methods for CVE-2023-44981

Indicators of Compromise

  • Unexpected quorum peer join events in ZooKeeper transaction logs referencing principals without an instance component.
  • New or unrecognized IP addresses establishing sessions on quorum ports 2888 and 3888.
  • Unexplained leader election cycles or epoch increments not correlated with planned operations.
  • Znode modifications attributed to peers that are not part of the documented ensemble inventory.

Detection Strategies

  • Audit ZooKeeper authentication logs for SASL identities missing the /instance segment.
  • Correlate quorum membership changes with change management records to surface unauthorized peers.
  • Run version inventory queries to identify Apache ZooKeeper instances older than 3.7.2, 3.8.3, or 3.9.1.
  • Monitor for outbound connections from non-ensemble hosts to quorum ports as a signal of attempted peer registration.

Monitoring Recommendations

  • Forward ZooKeeper server logs and audit logs to a centralized logging platform for retention and search.
  • Alert on first-seen source IP addresses connecting to ports 2888 and 3888.
  • Track ensemble configuration drift against an approved baseline of server entries in zoo.cfg.

How to Mitigate CVE-2023-44981

Immediate Actions Required

  • Upgrade Apache ZooKeeper to version 3.9.1, 3.8.3, or 3.7.2 as appropriate for your branch.
  • Apply Debian package updates referenced in Debian Security Advisory DSA-5544 and the Debian LTS Announcement.
  • Restrict quorum communication ports to ensemble members only using host or network firewalls.
  • Review Kerberos principal naming conventions and ensure every authorized peer uses an instance component.

Patch Information

The Apache ZooKeeper project released fixed versions 3.7.2, 3.8.3, and 3.9.1 that enforce the instance component check during quorum peer authorization. NetApp products bundling ZooKeeper received corresponding updates documented in the NetApp Security Advisory.

Workarounds

  • Place the ZooKeeper ensemble behind a firewall that permits quorum traffic only between known ensemble member IP addresses.
  • Disable SASL Quorum Peer authentication and rely on network segmentation if patching is not immediately possible, since quorum.auth.enableSasl is not enabled by default.
  • Use mutual TLS for quorum communication as an additional control layer where supported.
bash
# Restrict ZooKeeper quorum ports to ensemble members using iptables
iptables -A INPUT -p tcp --dport 2888 -s <ensemble_member_ip> -j ACCEPT
iptables -A INPUT -p tcp --dport 3888 -s <ensemble_member_ip> -j ACCEPT
iptables -A INPUT -p tcp --dport 2888 -j DROP
iptables -A INPUT -p tcp --dport 3888 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechApache Zookeeper

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • OpenWall OSS Security Post

  • Debian LTS Announcement

  • NetApp Security Advisory

  • Debian Security Advisory DSA-5544
  • Vendor Resources
  • Apache Thread Discussion
  • Related CVEs
  • CVE-2026-24281: Apache ZooKeeper Auth Bypass Vulnerability

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

  • CVE-2026-24308: Apache ZooKeeper Information Disclosure

  • CVE-2024-23944: Apache ZooKeeper Information Disclosure
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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