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
    • 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-2022-22968

CVE-2022-22968: Spring Framework Auth Bypass Vulnerability

CVE-2022-22968 is an authentication bypass flaw in VMware Spring Framework caused by case-sensitive field patterns in DataBinder. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 18, 2026

CVE-2022-22968 Overview

A case sensitivity vulnerability exists in VMware Spring Framework that affects the DataBinder's disallowedFields protection mechanism. In Spring Framework versions 5.3.0 - 5.3.18, 5.2.0 - 5.2.20, and older unsupported versions, the patterns for disallowedFields on a DataBinder are case sensitive, which means a field is not effectively protected unless it is listed with both upper and lower case for the first character of the field, including upper and lower case for the first character of all nested fields within the property path.

Critical Impact

Attackers can bypass field protection mechanisms by manipulating the case of field names, potentially allowing unauthorized data binding to sensitive object properties that were intended to be protected.

Affected Products

  • VMware Spring Framework 5.3.0 - 5.3.18
  • VMware Spring Framework 5.2.0 - 5.2.20
  • NetApp Active IQ Unified Manager (Linux, VMware vSphere, Windows)
  • NetApp Cloud Secure Agent
  • NetApp MetroCluster Tiebreaker
  • NetApp Snap Creator Framework
  • NetApp SnapManager (Oracle, SAP)
  • Oracle MySQL Enterprise Monitor

Discovery Timeline

  • 2022-04-14 - CVE CVE-2022-22968 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-22968

Vulnerability Analysis

This vulnerability is classified under CWE-178 (Improper Handling of Case Sensitivity). The Spring Framework's DataBinder component is designed to bind request parameters to Java objects. To protect sensitive fields from being bound (such as security-related properties), developers configure disallowedFields patterns. However, due to the case-sensitive nature of this matching mechanism, an attacker can bypass these protections by simply changing the case of the first character in field names.

For instance, if a developer disallows the field admin from being bound, an attacker could still bind to the Admin property by submitting a request with the capitalized variant. This affects all nested fields within property paths as well, requiring developers to enumerate both case variants for comprehensive protection.

Root Cause

The root cause lies in the DataBinder's string comparison logic for field name matching. The disallowedFields patterns use exact string matching that does not account for case variations in Java property names. Since Java beans follow JavaBeans naming conventions where property names can be accessed with different capitalizations (due to getter/setter method naming), this creates a bypass vector when only one case variant is blocked.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can craft HTTP requests containing form parameters or JSON fields with alternative capitalizations of protected field names. When these requests are processed by a vulnerable Spring application, the DataBinder will bind values to fields that should have been protected, potentially allowing:

  • Modification of security-sensitive object properties
  • Privilege escalation through manipulation of role or permission fields
  • Business logic bypass by altering protected state variables

The exploitation is straightforward and requires only knowledge of the target application's data model and which fields the developers intended to protect.

Detection Methods for CVE-2022-22968

Indicators of Compromise

  • HTTP requests containing form parameters or JSON fields with unusual capitalization patterns (e.g., Admin, ROLE, isAdmin vs isadmin)
  • Repeated requests varying only in parameter name casing, indicating probing attempts
  • Unexpected modifications to object properties that should be immutable or protected

Detection Strategies

  • Review application logs for requests containing mixed-case variations of known sensitive field names
  • Implement Web Application Firewall (WAF) rules to detect requests with suspicious parameter name patterns
  • Audit Spring application code for DataBinder configurations using disallowedFields that may not account for case variations
  • Deploy runtime application self-protection (RASP) solutions to monitor data binding operations

Monitoring Recommendations

  • Monitor Spring application logs for unexpected property binding warnings or errors
  • Track changes to sensitive object fields that correlate with incoming HTTP requests
  • Establish baselines for normal request patterns and alert on deviations involving parameter name casing anomalies
  • Implement SentinelOne Singularity XDR to correlate web application activity with endpoint behavior for comprehensive threat detection

How to Mitigate CVE-2022-22968

Immediate Actions Required

  • Upgrade Spring Framework to version 5.3.19 or later (for 5.3.x branch) or 5.2.21 or later (for 5.2.x branch)
  • Review all DataBinder configurations to ensure disallowedFields patterns include both upper and lower case variants
  • Implement allowlisting of permitted fields using setAllowedFields() instead of blocklisting with setDisallowedFields() where possible
  • Apply patches from affected downstream vendors (NetApp, Oracle) as they become available

Patch Information

VMware has released patched versions of Spring Framework. Refer to the VMware Security Advisory for upgrade instructions and version-specific guidance. Additional advisories are available from NetApp Security Advisory NTAP-20220602-0004 and the Oracle CPU July 2022 Security Alert for their respective affected products.

Workarounds

  • Configure disallowedFields with both case variants for each protected field (e.g., both admin and Admin)
  • Use setAllowedFields() to explicitly permit only expected fields, providing a more secure allowlist approach
  • Implement custom input validation at the controller level to reject requests with unexpected parameter name casing
  • Consider using @InitBinder methods with explicit field allowlisting rather than relying on disallowed field patterns
bash
# Example Spring configuration workaround
# In your @InitBinder method, use allowlisting instead of blocklisting:
# binder.setAllowedFields("name", "email", "address");
# This ensures only explicitly permitted fields can be bound,
# regardless of case sensitivity issues in disallowedFields

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechVmware Spring Framework

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability20.51%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-178
  • Technical References
  • NetApp Security Advisory NTAP-20220602-0004

  • Oracle CPU July 2022 Security Alert
  • Vendor Resources
  • VMware CVE-2022-22968 Analysis
  • Related CVEs
  • CVE-2023-20860: Spring Framework Auth Bypass Vulnerability

  • CVE-2022-22965: VMware Spring Framework RCE Vulnerability

  • CVE-2024-38808: VMware Spring Framework DoS Vulnerability

  • CVE-2023-20861: VMware Spring Framework DoS 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