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-2026-33557

CVE-2026-33557: Apache Kafka Auth Bypass Vulnerability

CVE-2026-33557 is an authentication bypass flaw in Apache Kafka that allows attackers to use unvalidated JWT tokens to impersonate any user. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-33557 Overview

A critical authentication bypass vulnerability has been identified in Apache Kafka affecting versions 4.1.0 and 4.1.1. The vulnerability exists in the default OAuth Bearer JWT token validation mechanism, where the broker accepts any JWT token without validating its signature, issuer, or audience. This allows attackers to forge JWT tokens with arbitrary user identities and gain unauthorized access to Kafka clusters.

Critical Impact

Attackers can generate malicious JWT tokens with any preferred_username value and gain unauthorized access to Apache Kafka brokers, potentially compromising message integrity and confidentiality across the entire cluster.

Affected Products

  • Apache Kafka 4.1.0
  • Apache Kafka 4.1.1

Discovery Timeline

  • April 20, 2026 - CVE-2026-33557 published to NVD
  • April 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33557

Vulnerability Analysis

This vulnerability represents an authentication bypass flaw in Apache Kafka's SASL OAuth Bearer authentication mechanism. The root issue lies in the default JWT validator class configuration, which fundamentally undermines the security guarantees expected from token-based authentication.

When Kafka brokers are configured to use OAuth Bearer authentication, they rely on JWT tokens to identify and authorize clients. However, the default validator class org.apache.kafka.common.security.oauthbearer.DefaultJwtValidator performs no cryptographic verification of incoming tokens. This means an attacker can craft a JWT token with any claims—including arbitrary usernames and permissions—and the broker will accept it as legitimate.

The vulnerability is particularly dangerous in production environments where OAuth Bearer authentication is expected to provide secure access control. Without proper signature validation, the entire trust model of JWT-based authentication collapses, allowing complete impersonation of any user.

Root Cause

The root cause is an insecure default configuration where the broker property sasl.oauthbearer.jwt.validator.class is set to org.apache.kafka.common.security.oauthbearer.DefaultJwtValidator. This default validator implementation accepts any JWT token without performing essential security checks:

  • No signature validation - Tokens are not verified against any cryptographic key
  • No issuer validation - Any issuer claim is accepted
  • No audience validation - The intended recipient is not verified

This design flaw means that security-critical validation is effectively disabled out of the box, leaving systems vulnerable unless administrators explicitly configure a secure validator.

Attack Vector

The attack vector for this vulnerability is network-based and requires no authentication or user interaction. An attacker with network access to a vulnerable Kafka broker can exploit this flaw through the following approach:

  1. Token Generation - The attacker crafts a JWT token using any JWT library, setting the preferred_username claim to the identity of a legitimate user or administrative account
  2. Direct Connection - The attacker establishes a connection to the Kafka broker using the SASL OAuth Bearer mechanism
  3. Authentication Bypass - The broker's default validator accepts the forged token without verification
  4. Unauthorized Access - The attacker gains access with the privileges associated with the impersonated user

This attack requires no special tools or exploit code—standard JWT libraries and Kafka client libraries are sufficient to exploit the vulnerability. The attacker does not need any prior credentials or access to legitimate tokens.

Detection Methods for CVE-2026-33557

Indicators of Compromise

  • Unusual authentication patterns from unexpected IP addresses or clients connecting with high-privilege usernames
  • JWT tokens with malformed or suspicious issuer (iss) claims that don't match your identity provider
  • Authentication logs showing successful logins for users who did not initiate connections
  • Kafka consumer groups or topics accessed by unexpected principals

Detection Strategies

  • Review Kafka broker configurations to identify instances using the vulnerable DefaultJwtValidator class
  • Implement monitoring for authentication events and correlate with your identity provider's token issuance logs
  • Audit Kafka ACLs for any unauthorized access patterns or permission changes
  • Enable detailed authentication logging on brokers to capture JWT token metadata

Monitoring Recommendations

  • Configure centralized logging for all Kafka broker authentication events
  • Set up alerts for authentication attempts using JWT tokens with issuers not on your approved list
  • Monitor for anomalous client behavior patterns such as new consumers on sensitive topics
  • Implement network-level monitoring for connections to Kafka broker ports from untrusted sources

How to Mitigate CVE-2026-33557

Immediate Actions Required

  • Audit all Kafka broker configurations to identify instances running versions 4.1.0 or 4.1.1
  • Immediately reconfigure the sasl.oauthbearer.jwt.validator.class property to use org.apache.kafka.common.security.oauthbearer.BrokerJwtValidator
  • Review authentication logs for signs of unauthorized access prior to remediation
  • Consider temporarily restricting network access to Kafka brokers while applying configuration changes

Patch Information

Apache has addressed this vulnerability in Kafka versions 4.1.2 and 4.2.0. Upgrading to these versions or later will ensure proper JWT token validation is enabled by default. For organizations unable to upgrade immediately, explicitly setting the secure validator class provides an effective workaround.

For detailed information, refer to the Apache Kafka CVE List and the Apache Mailing List Thread.

Workarounds

  • Explicitly configure the broker to use the secure JWT validator class as shown in the configuration example below
  • Implement network segmentation to restrict Kafka broker access to trusted clients only
  • Enable Kafka ACLs with deny-by-default policies to limit the impact of potential authentication bypass
  • Consider implementing additional authentication layers such as mutual TLS alongside OAuth Bearer
bash
# Kafka broker configuration to mitigate CVE-2026-33557
# Add or modify the following property in server.properties

# Set the secure JWT validator class explicitly
sasl.oauthbearer.jwt.validator.class=org.apache.kafka.common.security.oauthbearer.BrokerJwtValidator

# Restart Kafka brokers after applying the configuration change
# kafka-server-stop.sh && kafka-server-start.sh config/server.properties

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 Kafka

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.13%

  • 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-1285
  • Technical References
  • OpenWall OSS Security Discussion
  • Vendor Resources
  • Apache Kafka CVE List

  • Apache Mailing List Thread
  • Related CVEs
  • CVE-2026-33558: Apache Kafka Information Disclosure Flaw

  • CVE-2026-35554: Apache Kafka Race Condition Vulnerability

  • CVE-2024-31141: Apache Kafka Privilege Escalation Flaw

  • CVE-2025-27817: Apache Kafka Client SSRF 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