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

CVE-2026-3429: Keycloak Auth Bypass Vulnerability

CVE-2026-3429 is an authentication bypass flaw in Keycloak's Account REST API that lets attackers delete MFA credentials and hijack accounts. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-3429 Overview

A flaw was identified in the Account REST API of Keycloak that allows a user authenticated at a lower security level to perform sensitive actions intended only for higher-assurance sessions. Specifically, an attacker who has already obtained a victim's password can delete the victim's registered MFA/OTP credential without first proving possession of that factor. The attacker can then register their own MFA device, effectively taking full control of the account. This weakness undermines the intended protection provided by multi-factor authentication.

Critical Impact

An attacker with knowledge of a victim's password can bypass MFA protections by deleting the victim's registered authenticator and enrolling their own, leading to complete account takeover.

Affected Products

  • Keycloak (specific versions not disclosed)
  • Red Hat SSO (related implementations)
  • Identity providers using Keycloak Account REST API

Discovery Timeline

  • 2026-03-11 - CVE-2026-3429 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-3429

Vulnerability Analysis

This vulnerability represents a Broken Access Control flaw (CWE-284) in the Keycloak Account REST API. The core issue lies in the API's failure to enforce step-up authentication requirements when performing sensitive credential management operations. In a properly secured implementation, actions that modify security credentials—particularly those related to multi-factor authentication—should require the user to re-authenticate or prove possession of the existing MFA factor before any changes are permitted.

The Keycloak Account REST API exposes endpoints that allow authenticated users to manage their credentials, including MFA/OTP devices. However, the vulnerability permits these sensitive operations to be executed with a session authenticated only at the primary factor level (username/password), without requiring proof of the second factor. This design flaw effectively reduces MFA protection to single-factor authentication for account management operations.

Root Cause

The root cause is improper access control in the Account REST API's credential management endpoints. The API fails to validate the authentication assurance level (AAL) of the current session before permitting credential deletion operations. Specifically, the endpoint responsible for removing OTP/MFA credentials does not enforce a step-up authentication challenge, allowing a session authenticated with only a password to perform operations that should require MFA verification.

This implementation oversight violates the principle that security-sensitive operations should require authentication at an appropriate assurance level. The API should enforce that any modification to MFA credentials requires the user to first prove possession of their existing second factor.

Attack Vector

The attack exploits the network-accessible Account REST API and requires an attacker to have already compromised the victim's password through phishing, credential stuffing, or other means. The attack follows this sequence:

  1. Initial Authentication: The attacker authenticates to Keycloak using the victim's username and stolen password
  2. MFA Credential Enumeration: The attacker uses the Account REST API to enumerate the victim's registered MFA devices
  3. MFA Credential Deletion: Without being challenged for the second factor, the attacker deletes the victim's existing OTP/MFA credential via the vulnerable API endpoint
  4. Malicious MFA Registration: The attacker registers their own MFA device to the victim's account
  5. Account Takeover: The attacker now has full control with valid credentials and their own MFA device enrolled

This attack is particularly dangerous because it defeats the purpose of MFA—even if an organization has enforced MFA for all users, an attacker who obtains a password can circumvent this protection entirely.

Detection Methods for CVE-2026-3429

Indicators of Compromise

  • Unexpected deletion of MFA/OTP credentials followed by immediate registration of new MFA devices
  • Account REST API calls to credential management endpoints from unusual IP addresses or geolocations
  • Authentication sessions where MFA credentials were modified without a corresponding MFA challenge being satisfied
  • Multiple failed login attempts followed by successful authentication and immediate credential changes
  • Anomalous patterns in Keycloak audit logs showing credential lifecycle events

Detection Strategies

  • Monitor Keycloak audit events for DELETE_CREDENTIAL and UPDATE_CREDENTIAL events on OTP/MFA credential types
  • Implement alerting on credential management API calls that occur within a session that did not satisfy an MFA challenge
  • Create correlation rules to detect password-only authentication followed by MFA credential modifications
  • Review Account REST API access logs for credential management endpoint usage patterns
  • Deploy behavioral analytics to identify anomalous account management activities

Monitoring Recommendations

  • Enable comprehensive audit logging in Keycloak for all credential lifecycle events
  • Configure SIEM rules to alert on MFA credential deletion events, especially when followed by new MFA enrollment
  • Monitor for bulk or automated access patterns against the Account REST API
  • Implement session tracking to correlate authentication strength with subsequent API operations
  • Establish baseline patterns for legitimate MFA credential management to identify deviations

How to Mitigate CVE-2026-3429

Immediate Actions Required

  • Review and audit recent MFA credential changes in your Keycloak deployment to identify potential compromise
  • Implement network-level access controls to restrict Account REST API access to trusted networks where possible
  • Consider temporarily disabling self-service MFA management until patches are applied
  • Enable enhanced audit logging for all credential management operations
  • Notify users of any suspicious MFA credential changes and require manual verification through alternative channels

Patch Information

Consult the Red Hat CVE-2026-3429 Advisory for official patch information and affected version details. The Red Hat Bug Report #2443771 contains additional technical details about the vulnerability and remediation guidance. Apply vendor-provided patches as soon as they become available for your Keycloak deployment.

Workarounds

  • Implement a reverse proxy or API gateway rule to require step-up authentication for credential management endpoints
  • Configure Keycloak authentication flows to require re-authentication for Account Console access
  • Restrict Account REST API access through network segmentation or firewall rules
  • Implement custom authentication policies that enforce MFA verification before credential changes
  • Use organizational policies to require help desk verification for any MFA credential modifications
bash
# Example: Restrict Account REST API access via reverse proxy
# Add authentication requirements for credential management endpoints
# Note: Adjust paths according to your Keycloak configuration

# Nginx example - require client certificate for sensitive endpoints
location ~ ^/realms/[^/]+/account/credentials {
    # Require additional authentication layer
    auth_request /auth/step-up;
    proxy_pass http://keycloak-backend;
}

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

  • SeverityMEDIUM

  • CVSS Score4.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • Red Hat CVE-2026-3429 Advisory

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

  • CVE-2026-2603: Keycloak Auth Bypass Vulnerability

  • CVE-2026-2092: Keycloak Auth Bypass Vulnerability

  • CVE-2026-2366: Keycloak Auth Bypass 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