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-2022-31692

CVE-2022-31692: Spring Security Auth Bypass Vulnerability

CVE-2022-31692 is an authorization bypass flaw in VMware Spring Security affecting versions 5.7 and 5.6. Attackers can bypass authorization rules via forward or include dispatcher types to access privileged endpoints.

Published: February 18, 2026

CVE-2022-31692 Overview

CVE-2022-31692 is a critical authorization bypass vulnerability in VMware Spring Security that allows attackers to circumvent security rules through forward or include dispatcher types. This flaw enables unauthorized access to protected endpoints by exploiting the way Spring Security handles request forwarding and inclusion mechanisms.

The vulnerability specifically affects applications that configure Spring Security's AuthorizationFilter to apply security checks to forward and include dispatcher types. When an application forwards or includes a request to a higher privilege-secured endpoint, the authorization rules may be bypassed entirely, potentially exposing sensitive functionality to unauthenticated or lower-privileged users.

Critical Impact

Attackers can bypass authentication and authorization controls to access privileged endpoints, potentially leading to complete compromise of application security and unauthorized access to sensitive data or administrative functions.

Affected Products

  • VMware Spring Security versions 5.7 prior to 5.7.5
  • VMware Spring Security versions 5.6 prior to 5.6.9
  • NetApp Active IQ Unified Manager (VMware vSphere and Windows)

Discovery Timeline

  • 2022-10-31 - CVE-2022-31692 published to NVD
  • 2025-05-06 - Last updated in NVD database

Technical Details for CVE-2022-31692

Vulnerability Analysis

This authorization bypass vulnerability (CWE-639: Authorization Bypass Through User-Controlled Key) occurs when specific conditions align in a Spring Security configuration. The vulnerability manifests when all of the following conditions are true:

  1. The application expects Spring Security to apply security to forward and include dispatcher types
  2. The application uses the AuthorizationFilter either manually or via the authorizeHttpRequests() method
  3. The FilterChainProxy is configured to apply to forward and/or include requests (e.g., spring.security.filter.dispatcher-types = request, error, async, forward, include)
  4. The application may forward or include requests to higher privilege-secured endpoints
  5. Spring Security is configured to apply to every dispatcher type via authorizeHttpRequests().shouldFilterAllDispatcherTypes(true)

When these conditions are met, the security framework fails to properly enforce authorization rules during request forwarding or inclusion, allowing attackers to reach protected resources without proper authentication or authorization.

Root Cause

The root cause lies in how Spring Security's AuthorizationFilter processes forward and include dispatcher types. When a request is forwarded or included internally by the application, the security filter chain does not properly re-evaluate authorization rules for the target endpoint. This creates a scenario where the original request's authorization context is incorrectly applied to the forwarded or included request, even when targeting endpoints with stricter security requirements.

Attack Vector

This vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can craft malicious requests that trigger the application to forward or include the request to a privileged endpoint. By manipulating the request flow through publicly accessible entry points, attackers can effectively bypass authorization checks and access administrative or restricted functionality.

The attack typically involves:

  1. Identifying publicly accessible endpoints that perform internal forwarding or inclusion
  2. Crafting requests that cause the application to forward to protected resources
  3. Exploiting the authorization bypass to access privileged functionality
  4. Potentially escalating access to sensitive data or administrative operations

For detailed exploitation techniques and technical analysis, refer to the VMware Security Advisory.

Detection Methods for CVE-2022-31692

Indicators of Compromise

  • Unusual access patterns to administrative or privileged endpoints from unauthenticated sessions
  • Log entries showing successful access to protected resources without corresponding authentication events
  • Requests containing forward or include patterns targeting sensitive application paths
  • Anomalous traffic patterns where low-privilege requests result in high-privilege operations

Detection Strategies

  • Monitor Spring Security audit logs for authorization decisions that bypass expected access controls
  • Implement application-level logging to track request forwarding and inclusion operations
  • Deploy web application firewall rules to detect suspicious request patterns targeting forward/include mechanisms
  • Use SentinelOne Singularity platform to detect anomalous application behavior and unauthorized access attempts

Monitoring Recommendations

  • Enable verbose logging for Spring Security's AuthorizationFilter to capture authorization decisions
  • Configure alerting for access to sensitive endpoints that doesn't match expected authentication patterns
  • Implement runtime application self-protection (RASP) to detect and block authorization bypass attempts
  • Review application logs regularly for evidence of unauthorized endpoint access

How to Mitigate CVE-2022-31692

Immediate Actions Required

  • Upgrade Spring Security to version 5.7.5 or later for the 5.7.x branch
  • Upgrade Spring Security to version 5.6.9 or later for the 5.6.x branch
  • Review application configurations for vulnerable dispatcher type settings
  • Audit endpoint access controls and forward/include operations in your application

Patch Information

VMware has released patched versions that address this vulnerability. Organizations should upgrade to Spring Security 5.7.5 or 5.6.9 depending on their current version branch. Refer to the VMware Security Advisory for official patch guidance. NetApp customers should consult the NetApp Security Advisory for Active IQ Unified Manager updates.

Workarounds

  • Disable the shouldFilterAllDispatcherTypes(true) configuration if not strictly required
  • Remove forward and include from the spring.security.filter.dispatcher-types configuration
  • Implement additional authorization checks at the controller level for sensitive operations
  • Use request matchers to explicitly deny access to privileged endpoints via forward/include dispatcher types
bash
# Configuration example - Restrict dispatcher types in application.properties
spring.security.filter.dispatcher-types=request,error,async
# Avoid including 'forward' and 'include' unless absolutely necessary
# Review all endpoints that use RequestDispatcher.forward() or include()

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability8.38%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo

  • CWE-639
  • Technical References
  • NetApp Security Advisory
  • Vendor Resources
  • VMware CVE-2022-31692 Information
  • Related CVEs
  • CVE-2026-22733: Spring Security Auth Bypass Vulnerability

  • CVE-2025-41248: Spring Security Auth Bypass Vulnerability

  • CVE-2025-41232: Spring Security Aspects Auth Bypass Flaw

  • CVE-2025-22235: Spring Security 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