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

CVE-2026-23552: Apache Camel Auth Bypass Vulnerability

CVE-2026-23552 is an authentication bypass flaw in Apache Camel's Keycloak component that allows cross-realm token acceptance, breaking tenant isolation. This post covers technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-23552 Overview

A critical authentication bypass vulnerability has been identified in the Apache Camel Keycloak component's KeycloakSecurityPolicy. The vulnerability stems from improper validation of JWT tokens, specifically failing to verify the iss (issuer) claim against the configured Keycloak realm. This flaw allows tokens issued by one Keycloak realm to be silently accepted by policies configured for entirely different realms, effectively breaking multi-tenant isolation and security boundaries.

This vulnerability is classified under CWE-346 (Origin Validation Error), indicating a failure to properly validate the origin of data. In multi-tenant environments where different realms represent separate security domains, this vulnerability can lead to unauthorized cross-tenant access and data exposure.

Critical Impact

Attackers can use tokens from one Keycloak realm to authenticate against services configured for different realms, completely bypassing tenant isolation and potentially gaining unauthorized access to protected resources across security boundaries.

Affected Products

  • Apache Camel versions 4.15.0 through 4.17.x (prior to 4.18.0)
  • Apache Camel Keycloak component (camel-keycloak)
  • Deployments using KeycloakSecurityPolicy for JWT validation

Discovery Timeline

  • 2026-02-23 - CVE-2026-23552 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-23552

Vulnerability Analysis

The vulnerability resides in the KeycloakSecurityPolicy class within the Apache Camel Keycloak component. When processing incoming JWT tokens, the security policy performs standard token validation checks such as signature verification and expiration validation. However, it critically omits verification of the iss (issuer) claim against the expected realm URL configured in the policy.

In a properly functioning implementation, the issuer claim should match the Keycloak realm URL (typically in the format https://<keycloak-host>/realms/<realm-name>). Without this validation, a valid token from any Keycloak realm on the same identity provider—or even a different Keycloak instance entirely—will pass validation checks.

The impact is particularly severe in multi-tenant architectures where different customers or organizational units are segregated into separate Keycloak realms. An attacker with legitimate access to one realm can forge requests to services protected by a different realm's policy, achieving unauthorized cross-tenant access.

Root Cause

The root cause is the absence of issuer claim validation in the JWT token processing logic within KeycloakSecurityPolicy. The component validates the token signature and standard claims but fails to verify that the token's issuer matches the expected Keycloak realm configured for the protected resource. This is a classic Origin Validation Error (CWE-346) where the source of authentication data is not properly verified.

Attack Vector

The attack can be executed remotely over the network without requiring any privileges or user interaction. An attacker needs:

  1. A valid JWT token from any Keycloak realm (including one they legitimately control or have access to)
  2. Network access to an Apache Camel endpoint protected by KeycloakSecurityPolicy
  3. Knowledge of the target endpoint URL

The attacker simply presents their valid token from Realm A to an endpoint configured to accept tokens from Realm B. Due to the missing issuer validation, the token passes all security checks and grants the attacker access to resources they should not be able to reach.

The attack requires no special tooling—standard HTTP requests with a JWT bearer token are sufficient to exploit this vulnerability. In cloud environments or shared Keycloak deployments, this significantly lowers the barrier to exploitation.

Detection Methods for CVE-2026-23552

Indicators of Compromise

  • JWT tokens with iss claims that do not match the expected Keycloak realm URL appearing in application logs
  • Successful authentication events where the token issuer differs from the configured realm
  • Unusual cross-tenant access patterns or data access from unexpected source realms
  • Authentication audit logs showing realm mismatches between token origin and service configuration

Detection Strategies

  • Implement centralized logging of JWT token claims, particularly the iss field, for all Camel-Keycloak protected endpoints
  • Create correlation rules to detect tokens with issuer claims that do not match the expected realm configuration
  • Monitor for authentication successes where the token's iss claim domain or realm path differs from expected values
  • Deploy network-level monitoring to identify anomalous authentication patterns across tenant boundaries

Monitoring Recommendations

  • Enable detailed authentication logging in Apache Camel applications to capture full JWT token metadata
  • Configure SIEM alerts for any authentication events where the issuer claim validation would have failed
  • Establish baseline patterns for normal cross-service authentication and alert on deviations
  • Implement audit logging that records both the configured realm and the actual token issuer for forensic analysis

How to Mitigate CVE-2026-23552

Immediate Actions Required

  • Upgrade Apache Camel to version 4.18.0 or later, which includes the fix for this vulnerability
  • Audit all deployments using camel-keycloak component to identify affected services
  • Review authentication logs for any evidence of cross-realm token acceptance
  • Consider implementing additional API gateway-level issuer validation as defense-in-depth

Patch Information

Apache has released version 4.18.0 which addresses this vulnerability by implementing proper issuer claim validation in the KeycloakSecurityPolicy. Users running Apache Camel versions 4.15.0 through 4.17.x should upgrade immediately. The security advisory with full details is available at the Apache Camel Security Advisory.

Additional technical resources are available through the GitHub CVE-2026-23552 Repository and the OpenWall OSS-Security Discussion.

Workarounds

  • Implement a custom token validator that explicitly checks the iss claim before processing requests
  • Deploy an API gateway or reverse proxy that validates JWT issuer claims before forwarding requests to Camel endpoints
  • Use network segmentation to limit exposure between different tenant environments until patching is complete
  • Consider temporarily disabling KeycloakSecurityPolicy and using alternative authentication mechanisms for critical endpoints
bash
# Upgrade Apache Camel to patched version
# Maven dependency update in pom.xml
# Change: <camel.version>4.15.0</camel.version>
# To: <camel.version>4.18.0</camel.version>

# Gradle users update build.gradle
# Change: implementation 'org.apache.camel:camel-keycloak:4.15.0'
# To: implementation 'org.apache.camel:camel-keycloak:4.18.0'

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 Camel

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.01%

  • 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-346
  • Technical References
  • GitHub CVE-2026-23552 Repository

  • OpenWall OSS-Security Discussion
  • Vendor Resources
  • Apache Camel Security Advisory
  • Related CVEs
  • CVE-2025-27636: Apache Camel Auth Bypass Vulnerability

  • CVE-2025-29891: Apache Camel Auth Bypass Vulnerability

  • CVE-2026-25747: Apache Camel LevelDB RCE Vulnerability

  • CVE-2024-7885: Undertow Information Disclosure Vulnerability
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