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

CVE-2026-29067: Zitadel Auth Bypass Vulnerability

CVE-2026-29067 is an authentication bypass flaw in Zitadel's password reset mechanism that exploits header manipulation to redirect users. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-29067 Overview

CVE-2026-29067 is an Open Redirect vulnerability (CWE-601) in ZITADEL, an open source identity management platform. The vulnerability exists in ZITADEL's password reset mechanism within login V2, where the application uses the Forwarded or X-Forwarded-Host header from incoming HTTP requests to construct the URL for password reset confirmation links. These links, containing secret reset codes, are then emailed to users. An attacker who can manipulate these headers could redirect password reset links to a malicious domain, potentially capturing sensitive reset tokens.

Critical Impact

Attackers can hijack password reset tokens by manipulating HTTP host headers, enabling account takeover of any ZITADEL user who initiates a password reset.

Affected Products

  • ZITADEL versions 4.0.0-rc.1 through 4.7.0

Discovery Timeline

  • 2026-03-07 - CVE CVE-2026-29067 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-29067

Vulnerability Analysis

This vulnerability represents a classic Host Header Injection flaw combined with an Open Redirect weakness. When a user requests a password reset, ZITADEL's login V2 component reads the Forwarded or X-Forwarded-Host header from the incoming HTTP request and uses this value to construct the base URL for the password reset link. This design decision creates a trust boundary violation where user-controlled input directly influences security-sensitive URL generation.

The constructed URL contains a secret code that authenticates the password reset action. By poisoning the host header, an attacker can cause ZITADEL to generate and email a password reset link pointing to an attacker-controlled domain. When the victim clicks this link, the secret reset code is transmitted to the attacker's server, allowing them to complete the password reset process and take over the victim's account.

Root Cause

The root cause is improper validation and trust of HTTP headers used in security-critical URL construction. The X-Forwarded-Host and Forwarded headers are designed for use by reverse proxies to communicate the original host requested by the client. However, in many deployment scenarios, these headers can be directly controlled by attackers. ZITADEL's login V2 component failed to validate these headers against an allowlist of trusted domains before using them to construct password reset URLs, creating a path for attackers to redirect sensitive password reset links to malicious domains.

Attack Vector

The attack is network-based and requires minimal attacker privileges but does require user interaction. An attacker initiates a password reset request for a target user's email address while injecting a malicious host header value. The attack flow proceeds as follows:

  1. Attacker sends a password reset request to ZITADEL with a manipulated X-Forwarded-Host header pointing to attacker.com
  2. ZITADEL generates a password reset link using the attacker-controlled host value
  3. The victim receives an email with the poisoned reset link containing the secret code
  4. When the victim clicks the link, they are directed to the attacker's domain
  5. The attacker captures the secret code from the URL and uses it to reset the victim's password

The vulnerability requires no authentication to exploit, though user interaction (clicking the malicious link) is necessary for successful exploitation.

Detection Methods for CVE-2026-29067

Indicators of Compromise

  • Anomalous X-Forwarded-Host or Forwarded header values in HTTP logs that don't match legitimate proxy configurations
  • Password reset emails containing URLs with unexpected or external domain names
  • Unexpected password reset requests originating from unusual IP addresses or geographic locations
  • User reports of password reset emails with suspicious links

Detection Strategies

  • Monitor web server and application logs for HTTP requests containing unexpected X-Forwarded-Host or Forwarded header values
  • Implement alerting for password reset URL generation that references domains outside of the configured allowlist
  • Deploy web application firewalls (WAF) with rules to detect and block host header manipulation attempts
  • Review email logs for password reset messages containing external domain references

Monitoring Recommendations

  • Enable verbose logging for ZITADEL's login V2 component to capture all incoming headers on password reset endpoints
  • Configure SIEM rules to correlate password reset requests with unusual header patterns
  • Monitor for spikes in password reset failures that may indicate exploitation attempts
  • Implement real-time alerting for any password reset URLs containing non-whitelisted domains

How to Mitigate CVE-2026-29067

Immediate Actions Required

  • Upgrade ZITADEL to version 4.7.1 or later immediately
  • Audit recent password reset activity for signs of exploitation
  • Review proxy and load balancer configurations to ensure proper header handling
  • Consider implementing additional host header validation at the reverse proxy level

Patch Information

ZITADEL has released version 4.7.1 which addresses this vulnerability. The patch implements proper validation of the Forwarded and X-Forwarded-Host headers against trusted domain configurations before using them in URL construction. Organizations running affected versions (4.0.0-rc.1 through 4.7.0) should upgrade immediately.

For detailed patch information and upgrade instructions, see the ZITADEL Security Advisory.

Workarounds

  • Configure your reverse proxy or load balancer to strip or sanitize X-Forwarded-Host and Forwarded headers from untrusted sources before they reach ZITADEL
  • Implement a web application firewall rule to block requests with host headers that don't match your legitimate domain configuration
  • Consider disabling password reset functionality temporarily if immediate patching is not possible
bash
# Example nginx configuration to restrict X-Forwarded-Host
# Add to your nginx server block proxying to ZITADEL
proxy_set_header X-Forwarded-Host $host;
proxy_set_header Host $host;
# Ensure only the configured host value is passed, ignoring client-supplied headers

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

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-601
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33132: Zitadel Auth Bypass Vulnerability

  • CVE-2026-32132: ZITADEL Auth Bypass Vulnerability

  • CVE-2026-32130: ZITADEL SCIM API 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