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

CVE-2026-32130: ZITADEL SCIM API Auth Bypass Vulnerability

CVE-2026-32130 is an authentication bypass flaw in ZITADEL's SCIM API that allows unauthenticated attackers to access sensitive user information. This article covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-32130 Overview

ZITADEL, an open source identity management platform, contains an authentication bypass vulnerability in its System for Cross-domain Identity Management (SCIM) API. The vulnerability affects versions from 2.68.0 to before 3.4.8 and 4.12.2. When requests are sent to the SCIM API with URL-encoded path values, the requests are correctly routed but bypass necessary authentication and permission checks. This allows unauthenticated attackers to retrieve sensitive information including names, email addresses, phone numbers, addresses, external IDs, and roles from the identity management system.

Critical Impact

Unauthenticated remote attackers can access sensitive user identity data through the SCIM API without any credentials, potentially exposing personally identifiable information (PII) of all users managed by the ZITADEL instance.

Affected Products

  • ZITADEL versions 2.68.0 to before 3.4.8
  • ZITADEL versions 4.x to before 4.12.2

Discovery Timeline

  • March 11, 2026 - CVE-2026-32130 published to NVD
  • March 12, 2026 - Last updated in NVD database

Technical Details for CVE-2026-32130

Vulnerability Analysis

This vulnerability is classified as CWE-288 (Authentication Bypass Using an Alternate Path or Channel). The SCIM API endpoint in ZITADEL is designed to allow external identity providers to provision users into the platform. However, the authentication middleware fails to properly validate requests when the URL path contains URL-encoded characters.

When a request reaches the SCIM endpoint with URL-encoded path segments (such as %2F instead of /), the routing layer correctly interprets and routes the request to the appropriate handler. However, the authentication and authorization checks that should be applied to these requests do not properly decode and validate the path, resulting in the request bypassing security controls entirely.

The impact is limited to read operations—attackers can retrieve user data but cannot modify or delete records due to additional integrity checks in the data manipulation layer.

Root Cause

The root cause is improper URL decoding handling in the authentication middleware. The routing logic and the authentication logic use different path normalization approaches, creating a discrepancy that allows attackers to craft requests that bypass authentication while still reaching protected endpoints. This is a common pattern in path traversal and authentication bypass vulnerabilities where different components handle URL encoding inconsistently.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker with network access to a vulnerable ZITADEL instance can exploit this vulnerability by sending specially crafted HTTP requests to the SCIM API endpoint with URL-encoded path values.

The attack flow involves:

  1. Identifying a ZITADEL instance exposing the SCIM API
  2. Crafting requests with URL-encoded path segments to bypass authentication
  3. Querying the SCIM endpoint to enumerate and extract user data including names, email addresses, phone numbers, physical addresses, external identifiers, and role assignments

Due to the nature of identity management platforms, a successful exploit could expose the entire user directory of an organization.

Detection Methods for CVE-2026-32130

Indicators of Compromise

  • Unusual HTTP requests to SCIM API endpoints containing URL-encoded path characters such as %2F, %2E, or %5C
  • High volume of unauthenticated requests to /scim/ or related identity management endpoints
  • Access logs showing successful SCIM API responses without corresponding authentication events
  • Data exfiltration patterns indicating bulk user enumeration through the SCIM interface

Detection Strategies

  • Monitor web application logs for SCIM API requests containing percent-encoded characters in the URL path
  • Implement anomaly detection for unauthenticated access patterns to identity management endpoints
  • Correlate SCIM API access logs with authentication logs to identify requests that bypassed authentication
  • Deploy Web Application Firewall (WAF) rules to detect and alert on URL-encoded path manipulation attempts

Monitoring Recommendations

  • Enable detailed access logging on ZITADEL instances with request path and authentication status
  • Configure alerts for high-frequency SCIM API queries from single IP addresses or unusual geographic locations
  • Review historical SCIM API access logs for signs of prior exploitation before patching

How to Mitigate CVE-2026-32130

Immediate Actions Required

  • Upgrade to ZITADEL version 3.4.8 or 4.12.2 immediately
  • Review SCIM API access logs for evidence of exploitation
  • Consider temporarily disabling the SCIM API if not actively used until patching is complete
  • Implement network-level access controls to restrict SCIM API access to trusted identity providers

Patch Information

The vulnerability has been fixed in ZITADEL versions 3.4.8 and 4.12.2. Organizations should upgrade to these versions or later to remediate this vulnerability. For detailed release notes and upgrade instructions, refer to the Zitadel v3.4.8 Release or Zitadel v4.12.2 Release. Additional details are available in the GitHub Security Advisory GHSA-83pv-4xxp-rm2x.

Workarounds

  • Restrict network access to the SCIM API using firewall rules or reverse proxy configurations
  • Implement additional authentication at the network layer (VPN, IP allowlisting) for SCIM endpoint access
  • Deploy a Web Application Firewall (WAF) with rules to normalize URL-encoded characters before routing
  • If SCIM provisioning is not required, disable the SCIM API entirely until the system is upgraded
bash
# Example: Block SCIM API access via iptables until patched
# Allow only trusted identity provider IP
iptables -A INPUT -p tcp --dport 443 -m string --string "/scim/" --algo bm -s TRUSTED_IP -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -m string --string "/scim/" --algo bm -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechZitadel

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-288
  • Technical References
  • Zitadel Release v3.4.8

  • Zitadel Release v4.12.2

  • GitHub Security Advisory GHSA-83pv-4xxp-rm2x
  • Related CVEs
  • CVE-2026-33132: Zitadel Auth Bypass Vulnerability

  • CVE-2026-32132: ZITADEL Auth Bypass Vulnerability

  • CVE-2026-29067: Zitadel Auth Bypass Vulnerability

  • CVE-2026-29192: Zitadel 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