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

CVE-2026-3009: Keycloak Auth Bypass Vulnerability

CVE-2026-3009 is an authentication bypass flaw in Keycloak that allows attackers to authenticate using disabled Identity Providers. This post covers the technical details, affected versions, security impact, and mitigation.

Published: March 6, 2026

CVE-2026-3009 Overview

A security flaw in the IdentityBrokerService.performLogin endpoint of Keycloak allows authentication to proceed using an Identity Provider (IdP) even after it has been disabled by an administrator. An attacker who knows the IdP alias can reuse a previously generated login request to bypass the administrative restriction. This undermines access control enforcement and may allow unauthorized authentication through a disabled external provider.

Critical Impact

Attackers can bypass administrative controls by exploiting disabled Identity Providers, potentially gaining unauthorized access to protected resources through authentication mechanisms that should no longer be available.

Affected Products

  • Keycloak Identity and Access Management Platform
  • Red Hat Single Sign-On (products covered by RHSA-2026:3947)
  • Red Hat Single Sign-On (products covered by RHSA-2026:3948)

Discovery Timeline

  • 2026-03-05 - CVE-2026-3009 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-3009

Vulnerability Analysis

This vulnerability is classified under CWE-285 (Improper Authorization), which occurs when software does not properly perform access control checks. In this case, Keycloak's IdentityBrokerService fails to validate whether an Identity Provider is still enabled when processing authentication requests that were generated prior to the IdP being disabled.

The flaw allows an attacker to circumvent administrative decisions to disable external authentication providers. When an administrator disables an IdP, any previously generated authentication requests referencing that IdP should become invalid. However, the vulnerable implementation continues to process these requests, allowing authentication to succeed through the disabled provider.

The attack is network-accessible and requires low privileges to execute, but does not require user interaction. Successful exploitation can compromise both confidentiality and integrity of the affected system, as unauthorized users may gain access to protected resources.

Root Cause

The root cause lies in insufficient validation within the IdentityBrokerService.performLogin endpoint. When processing an authentication request, the service fails to verify the current enabled/disabled status of the referenced Identity Provider at the time of authentication execution. Instead, it relies on the validity of the request itself, which was generated when the IdP was still enabled.

This represents a Time-of-Check Time-of-Use (TOCTOU) design flaw where the authorization state checked during request generation differs from the state at request execution time. The IdP alias embedded in the login request continues to function even after administrative changes have been made to disable that provider.

Attack Vector

The attack requires knowledge of a valid IdP alias that was previously configured in the Keycloak instance. An attacker can exploit this vulnerability through the following mechanism:

  1. The attacker obtains or generates a valid login request URL containing the alias of a target Identity Provider while it is still enabled
  2. The administrator subsequently disables the Identity Provider for security or policy reasons
  3. The attacker uses the previously captured login request to initiate authentication
  4. The IdentityBrokerService.performLogin endpoint processes the request without validating the current IdP status
  5. Authentication proceeds through the disabled provider, bypassing administrative restrictions

This attack bypasses the intended security control that disabling an IdP should prevent all future authentications through that provider. The vulnerability is particularly concerning in scenarios where IdPs are disabled due to security incidents or trust revocations with external identity providers.

Detection Methods for CVE-2026-3009

Indicators of Compromise

  • Authentication events logged against Identity Providers that are currently marked as disabled in Keycloak configuration
  • Unusual login activity patterns showing successful authentications via IdP aliases that should be inactive
  • Login requests containing IdP aliases that do not match the list of currently enabled providers
  • Audit log entries showing authentication broker activity for disabled external providers

Detection Strategies

  • Monitor Keycloak authentication logs for successful logins via IdP aliases that are currently disabled in the realm configuration
  • Implement real-time correlation between IdP configuration changes and subsequent authentication attempts against those providers
  • Create alerts for authentication requests containing IdP aliases that have been recently disabled
  • Review audit trails for patterns of login requests that reference disabled Identity Providers

Monitoring Recommendations

  • Enable detailed audit logging for all IdentityBrokerService operations in Keycloak
  • Configure SIEM rules to correlate IdP disable events with subsequent authentication attempts using those providers
  • Implement periodic reconciliation between enabled IdP configurations and authentication activity logs
  • Monitor for reconnaissance activity attempting to enumerate valid IdP aliases

How to Mitigate CVE-2026-3009

Immediate Actions Required

  • Apply the security patches provided in Red Hat Security Advisory RHSA-2026:3947 and RHSA-2026:3948
  • Review authentication logs for any evidence of exploitation against recently disabled Identity Providers
  • Audit all currently disabled IdPs and consider removing their configurations entirely if they are no longer needed
  • Invalidate any existing sessions that may have been established through disabled IdP authentication

Patch Information

Red Hat has released security advisories addressing this vulnerability. Organizations running affected versions of Keycloak or Red Hat Single Sign-On should apply the patches immediately:

  • RHSA-2026:3947 - Red Hat Security Advisory
  • RHSA-2026:3948 - Red Hat Security Advisory

For additional technical details, refer to Red Hat's CVE analysis and Bug Report #2441867.

Workarounds

  • Instead of disabling Identity Providers, delete their configurations entirely when they are no longer needed
  • Implement additional network-level access controls to restrict access to the Keycloak authentication endpoints
  • Use authentication policies to require additional verification steps for IdP-based logins
  • Consider implementing a custom authentication flow that explicitly validates IdP status before proceeding with authentication
bash
# Configuration example
# Remove disabled IdPs from Keycloak realm configuration via CLI
# Replace <realm-name> and <idp-alias> with appropriate values

# List all Identity Providers in a realm
/opt/keycloak/bin/kcadm.sh get identity-provider/instances -r <realm-name>

# Delete a disabled Identity Provider entirely (recommended workaround)
/opt/keycloak/bin/kcadm.sh delete identity-provider/instances/<idp-alias> -r <realm-name>

# Verify the IdP has been removed
/opt/keycloak/bin/kcadm.sh get identity-provider/instances -r <realm-name>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechKeycloak

  • SeverityHIGH

  • CVSS Score8.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-285
  • Technical References
  • Red Hat Security Advisory RHSA-2026:3947

  • Red Hat Security Advisory RHSA-2026:3948

  • Red Hat CVE Analysis CVE-2026-3009

  • Red Hat Bug Report #2441867
  • Related CVEs
  • CVE-2026-4636: Keycloak Auth Bypass Vulnerability

  • CVE-2026-4325: Keycloak Auth Bypass Vulnerability

  • CVE-2026-3872: Keycloak Auth Bypass Vulnerability

  • CVE-2026-4628: Keycloak 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