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

CVE-2026-1486: Keycloak Auth Bypass Vulnerability

CVE-2026-1486 is an authentication bypass flaw in Keycloak's JWT authorization grant flow that allows disabled Identity Providers to issue valid tokens. This post covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-1486 Overview

A security flaw has been identified in Keycloak's jwt-authorization-grant flow that allows authentication bypass through disabled Identity Providers (IdPs). The vulnerability occurs because the server fails to verify whether an IdP is enabled before issuing tokens. The lookupIdentityProviderFromIssuer mechanism retrieves IdP configurations but does not filter for isEnabled=false status, allowing compromised or decommissioned IdPs to continue authenticating users.

Critical Impact

An attacker possessing the signing key of a disabled IdP can generate valid JWT assertions that Keycloak will accept, resulting in unauthorized access token issuance even after an administrator has explicitly disabled the IdP.

Affected Products

  • Keycloak (versions not specified in advisory)
  • Red Hat Single Sign-On (related products per RHSA-2026:2365)
  • Red Hat build of Keycloak (related products per RHSA-2026:2366)

Discovery Timeline

  • 2026-02-09 - CVE-2026-1486 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-1486

Vulnerability Analysis

This vulnerability represents an Authentication Bypass flaw classified under CWE-358 (Improperly Implemented Security Check for Standard). The core issue lies in Keycloak's token exchange and JWT authorization grant processing logic. When a client presents a JWT assertion signed by an external IdP, Keycloak performs issuer validation by looking up the corresponding IdP configuration. However, this lookup process fails to include a critical check—whether the IdP is currently enabled in the system.

This design oversight creates a dangerous window of exploitation. When an organization disables an IdP—typically done when the IdP has been compromised, a business relationship has ended, or during security incident response—the expectation is that all authentication pathways through that IdP are immediately terminated. Instead, any entity that retained or obtained the IdP's signing key can continue to generate valid JWT assertions that Keycloak will honor.

The attack is network-accessible and requires the attacker to possess low-level privileges (specifically, access to the disabled IdP's signing key). No user interaction is required for exploitation.

Root Cause

The root cause is an incomplete security check in the lookupIdentityProviderFromIssuer function within Keycloak's JWT authorization grant processing code. The function retrieves IdP configuration based on the issuer claim in the JWT but omits filtering logic to exclude disabled IdPs from the lookup results. This means the isEnabled property of the IdP configuration is not evaluated during the token validation process.

Attack Vector

The attack exploits the network-accessible jwt-authorization-grant endpoint. An attacker with access to a disabled IdP's signing key can craft JWT assertions containing:

  1. A valid issuer claim matching the disabled IdP's configuration
  2. Appropriate subject and audience claims
  3. A valid signature generated using the IdP's signing key

When submitted to Keycloak's token endpoint, the server processes the assertion through the vulnerable lookup mechanism. Since the disabled status is not checked, Keycloak accepts the assertion as valid and issues access tokens to the attacker.

The vulnerability mechanism involves the following sequence: First, an administrator disables an IdP in Keycloak (for example, due to a security incident or offboarding). The attacker, who has obtained the disabled IdP's signing credentials, then crafts a JWT assertion with valid claims and signature. Upon submitting this to Keycloak's token endpoint using the jwt-authorization-grant flow, the lookupIdentityProviderFromIssuer function retrieves the IdP configuration without checking the enabled status. Keycloak validates the JWT signature against the IdP's public key and issues a valid access token to the attacker, granting unauthorized access to protected resources.

For detailed technical analysis, refer to Red Hat Bug Report #2433347.

Detection Methods for CVE-2026-1486

Indicators of Compromise

  • Token issuance events linked to IdPs that are currently in disabled state
  • JWT assertions containing issuer claims matching disabled IdP configurations
  • Unexpected authentication activity from IdPs that were recently decommissioned
  • Access token grants without corresponding active IdP sessions

Detection Strategies

  • Implement logging and alerting on all jwt-authorization-grant flow requests, correlating with IdP enabled status
  • Create SIEM rules to detect authentication events from IdPs that appear in the disabled IdP list
  • Monitor for token issuance patterns that don't match expected user behavior for disabled IdPs
  • Review Keycloak audit logs for token grants associated with IdPs that have been disabled

Monitoring Recommendations

  • Enable verbose logging for Keycloak's token endpoint and IdP lookup operations
  • Establish baseline metrics for jwt-authorization-grant usage per IdP to detect anomalies
  • Configure alerts for any token issuance attempts referencing IdPs in disabled state
  • Implement real-time correlation between IdP configuration changes and subsequent authentication events

How to Mitigate CVE-2026-1486

Immediate Actions Required

  • Apply security patches from Red Hat Security Advisories RHSA-2026:2365 and RHSA-2026:2366
  • Audit all currently disabled IdPs and rotate their signing keys if compromise is suspected
  • Review token grants issued since IdPs were disabled for potential unauthorized access
  • Consider temporarily removing disabled IdP configurations entirely until patches are applied

Patch Information

Red Hat has released security advisories addressing this vulnerability. Organizations should apply the relevant patches based on their deployment:

  • Red Hat Security Advisory RHSA-2026:2365
  • Red Hat Security Advisory RHSA-2026:2366

For additional details, refer to the Red Hat CVE Analysis for CVE-2026-1486.

Workarounds

  • Delete disabled IdP configurations entirely rather than simply disabling them
  • Implement network-level restrictions on the token endpoint to limit access from trusted sources only
  • Rotate signing keys for all IdPs before disabling them to invalidate existing key material
  • Deploy additional authentication layers (MFA) that don't rely solely on IdP assertions
bash
# Example: Remove disabled IdP configuration via Keycloak Admin CLI
# Replace <realm> and <idp-alias> with your values
kcadm.sh delete identity-provider/instances/<idp-alias> -r <realm>

# Verify IdP has been removed
kcadm.sh get identity-provider/instances -r <realm>

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.8

  • EPSS Probability0.04%

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

  • Red Hat Security Advisory RHSA-2026:2366

  • Red Hat CVE Analysis CVE-2026-1486

  • Red Hat Bug Report #2433347
  • 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