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

CVE-2026-22746: Spring Security Auth Bypass Vulnerability

CVE-2026-22746 is an authentication bypass flaw in Spring Security that allows attackers to circumvent timing attack defenses for disabled, expired, or locked users. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-22746 Overview

CVE-2026-22746 is a timing attack vulnerability in Spring Security that affects the DaoAuthenticationProvider component. When an application utilizes the UserDetails#isEnabled, #isAccountNonExpired, or #isAccountNonLocked user attributes to manage user states (enable, expire, or lock users), the built-in timing attack defense mechanisms can be bypassed. This bypass specifically impacts users who are disabled, expired, or locked, potentially allowing attackers to enumerate valid usernames through observable differences in response times.

Critical Impact

Attackers can potentially bypass timing attack defenses to enumerate valid user accounts that are in disabled, expired, or locked states, which could facilitate further targeted attacks.

Affected Products

  • Spring Security 5.7.0 through 5.7.22
  • Spring Security 5.8.0 through 5.8.24
  • Spring Security 6.3.0 through 6.3.15
  • Spring Security 6.5.0 through 6.5.9
  • Spring Security 7.0.0 through 7.0.4

Discovery Timeline

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

Technical Details for CVE-2026-22746

Vulnerability Analysis

This vulnerability (CWE-208: Observable Timing Discrepancy) exists in Spring Security's DaoAuthenticationProvider implementation. The timing attack defense mechanism is designed to prevent attackers from determining whether a username exists based on response time differences during authentication attempts. However, when user account status checks (isEnabled, isAccountNonExpired, isAccountNonLocked) are performed, the defense mechanism fails to properly normalize response times for accounts in disabled, expired, or locked states.

The flaw allows an attacker to observe timing differences between authentication attempts against active accounts versus accounts that have been administratively disabled, expired, or locked. This side-channel information leakage can be leveraged to enumerate valid usernames in the system, even when those accounts are not currently accessible.

Root Cause

The root cause lies in the order of operations within DaoAuthenticationProvider. The timing attack defense typically ensures that password verification takes a consistent amount of time regardless of whether a user exists. However, when the user exists but fails one of the account status checks (isEnabled, isAccountNonExpired, or isAccountNonLocked), the authentication flow takes a different code path that does not apply the same timing normalization. This creates an observable timing discrepancy that can be measured and exploited.

Attack Vector

The attack is network-based and can be executed without authentication. An attacker sends multiple authentication requests to the target application and measures the response times. By analyzing statistical differences in response latencies, the attacker can identify:

  1. Usernames that do not exist (timing profile A)
  2. Usernames that exist but are disabled, expired, or locked (timing profile B)
  3. Usernames that exist and are active (timing profile C)

This enumeration technique requires high attack complexity due to the need for precise timing measurements and statistical analysis, but can be automated with specialized tools. The attack does not require user interaction and is limited to information disclosure (username enumeration).

Detection Methods for CVE-2026-22746

Indicators of Compromise

  • Unusually high volume of failed authentication attempts from a single source IP or small range of IPs
  • Authentication attempts with a pattern suggesting systematic username enumeration
  • Login attempts targeting known or suspected disabled/locked user accounts
  • Statistical anomalies in authentication request patterns

Detection Strategies

  • Monitor authentication logs for high-frequency failed login attempts that suggest enumeration activity
  • Implement rate limiting on authentication endpoints and alert on threshold breaches
  • Deploy application performance monitoring (APM) to detect unusual patterns in authentication endpoint response times
  • Correlate authentication failures with account status to identify targeted attacks against disabled/locked accounts

Monitoring Recommendations

  • Enable detailed logging for all authentication events including timestamps and source IPs
  • Configure SIEM alerts for authentication anomalies such as rapid sequential login attempts
  • Monitor for reconnaissance patterns that may precede credential stuffing or brute force attacks
  • Review Spring Security audit logs regularly for evidence of timing-based enumeration attempts

How to Mitigate CVE-2026-22746

Immediate Actions Required

  • Upgrade Spring Security to a patched version as soon as updates are available from VMware/Spring
  • Review applications for usage of UserDetails#isEnabled, #isAccountNonExpired, and #isAccountNonLocked attributes
  • Implement additional rate limiting on authentication endpoints to make timing attacks more difficult
  • Consider implementing CAPTCHA or progressive delays for failed authentication attempts

Patch Information

VMware/Spring has acknowledged this vulnerability. For detailed patch information and recommended upgrade paths, refer to the Spring Security CVE-2026-22746 Advisory. Organizations should upgrade to the latest patched versions of Spring Security in their respective version lines.

Workarounds

  • Implement custom timing normalization by adding artificial delays to all authentication responses
  • Use a Web Application Firewall (WAF) to rate limit and detect enumeration attempts on authentication endpoints
  • Consider temporarily disabling detailed account status messages until patches can be applied
  • Deploy network-level protections to limit authentication request rates from individual sources
bash
# Example: Configure rate limiting in nginx as a temporary mitigation
# Add to server block configuration for authentication endpoints
limit_req_zone $binary_remote_addr zone=auth_limit:10m rate=5r/s;

location /login {
    limit_req zone=auth_limit burst=10 nodelay;
    proxy_pass http://spring_app;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechSpring Security

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-208
  • Technical References
  • Spring Security CVE-2026-22746
  • Related CVEs
  • CVE-2026-22747: Spring Security Auth Bypass Vulnerability

  • CVE-2026-22754: Spring Security Auth Bypass Vulnerability

  • CVE-2026-22748: Spring Security Auth Bypass Vulnerability

  • CVE-2026-22753: Spring Security 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