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

CVE-2026-22729: Spring AI Auth Bypass Vulnerability

CVE-2026-22729 is a JSONPath injection flaw in Spring AI that enables authenticated users to bypass metadata-based access controls. This article covers the technical details, affected components, and mitigation strategies.

Published: March 20, 2026

CVE-2026-22729 Overview

A JSONPath injection vulnerability in Spring AI's AbstractFilterExpressionConverter allows authenticated users to bypass metadata-based access controls through crafted filter expressions. User-controlled input passed to FilterExpressionBuilder is concatenated into JSONPath queries without proper escaping, enabling attackers to inject arbitrary JSONPath logic and access unauthorized documents.

This vulnerability affects applications using vector stores that extend AbstractFilterExpressionConverter for multi-tenant isolation, role-based access control, or document filtering based on metadata.

Critical Impact

Attackers can bypass access controls and retrieve unauthorized documents by injecting malicious JSONPath expressions, potentially exposing sensitive data across tenant boundaries.

Affected Products

  • Spring AI applications using AbstractFilterExpressionConverter
  • Vector store implementations with metadata-based filtering
  • Multi-tenant applications relying on filter expressions for access control

Discovery Timeline

  • 2026-03-18 - CVE CVE-2026-22729 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-22729

Vulnerability Analysis

This vulnerability is classified under CWE-917 (Improper Neutralization of Special Elements used in an Expression Language Statement), commonly referred to as Expression Language Injection. The flaw exists in how Spring AI's AbstractFilterExpressionConverter handles user-supplied values when constructing JSONPath queries for vector store operations.

The core issue stems from insufficient input sanitization when filter expressions are built dynamically. Applications that use FilterExpressionBuilder to create metadata queries incorporate user-controlled values directly into JSONPath strings without escaping special characters. This design flaw enables attackers to break out of the intended query context and inject their own JSONPath logic.

The vulnerability has significant implications for multi-tenant architectures where metadata filtering serves as a security boundary. An attacker authenticated to one tenant could craft malicious filter expressions to access documents belonging to other tenants or bypass role-based access control restrictions entirely.

Root Cause

The root cause lies in the improper handling of special characters within filter expression values. When user-supplied input is passed to the FilterExpressionBuilder, characters such as ", ||, and && are not escaped before being inserted into JSONPath queries. This allows these characters to be interpreted as JSONPath operators rather than literal string values, fundamentally altering the query logic.

The AbstractFilterExpressionConverter class and its implementations fail to implement proper output encoding for the JSONPath context, violating secure coding principles for query construction.

Attack Vector

The attack is network-accessible and requires no special privileges beyond basic authentication. An attacker can exploit this vulnerability by:

  1. Identifying application endpoints that accept filter expressions or search criteria
  2. Crafting malicious input containing JSONPath injection payloads with special characters
  3. Submitting the crafted input through the application's normal API interfaces
  4. The malicious JSONPath logic executes against the vector store, returning unauthorized documents

The vulnerability enables horizontal access control bypass, allowing attackers to access resources belonging to other users or tenants. The injection technique manipulates the logical structure of metadata queries, causing the filter to match documents that should be restricted.

For detailed technical information about the vulnerability mechanism and affected code paths, refer to the Spring Security Advisory CVE-2026-22729.

Detection Methods for CVE-2026-22729

Indicators of Compromise

  • Unusual filter expressions in application logs containing JSONPath special characters (||, &&, ")
  • Unexpected query patterns in vector store access logs showing access to documents outside normal user scope
  • Authentication logs showing users accessing resources from different tenants or security contexts

Detection Strategies

  • Implement input validation rules to detect and alert on filter expressions containing JSONPath operators
  • Monitor vector store query logs for anomalous access patterns or cross-tenant document retrieval
  • Deploy web application firewall (WAF) rules to detect JSONPath injection payloads in request parameters
  • Enable detailed logging for FilterExpressionBuilder operations to capture suspicious input patterns

Monitoring Recommendations

  • Configure alerts for filter expressions exceeding normal length thresholds or containing multiple special characters
  • Establish baseline metrics for per-user or per-tenant document access patterns and alert on deviations
  • Monitor application error logs for JSONPath parsing errors that may indicate injection attempts

How to Mitigate CVE-2026-22729

Immediate Actions Required

  • Review all code paths that use FilterExpressionBuilder or AbstractFilterExpressionConverter with user-supplied input
  • Implement strict input validation to reject filter values containing special JSONPath characters
  • Apply patches from Spring AI as soon as they become available
  • Consider implementing additional authorization checks at the document retrieval layer

Patch Information

Refer to the Spring Security Advisory CVE-2026-22729 for official patch information and updated versions. Organizations should monitor Spring's security announcements for remediation guidance and apply updates as soon as they are released.

Workarounds

  • Implement a whitelist-based input validation layer that only allows alphanumeric characters in filter expression values
  • Add server-side authorization checks that verify document access permissions independently of filter expressions
  • Consider implementing prepared statement-style parameterization for filter queries if supported by your vector store
  • Temporarily disable user-controlled metadata filtering functionality until patches are applied

To implement input validation for filter expression values, ensure that user-supplied filter values are sanitized by escaping or rejecting special characters before they are passed to FilterExpressionBuilder. Consult the Spring Security Advisory for specific implementation guidance appropriate to your application architecture.

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 Ai

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-917
  • Technical References
  • Spring Security Advisory CVE-2026-22729
  • Related CVEs
  • CVE-2026-22744: Spring AI Redis Store XSS Vulnerability

  • CVE-2026-22738: Spring AI SpEL Injection RCE Vulnerability

  • CVE-2026-22743: Spring AI Neo4j Cypher Injection Vulnerability

  • CVE-2026-22742: Spring AI Bedrock Converse SSRF 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