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-2026-43912

CVE-2026-43912: Vaultwarden Auth Bypass Vulnerability

CVE-2026-43912 is an authentication bypass flaw in Dani-garcia Vaultwarden that allows attackers to gain unauthorized access to organization vault data across multiple organizations. This article covers technical details.

Published: May 18, 2026

CVE-2026-43912 Overview

Vaultwarden, a Bitwarden-compatible server implementation written in Rust, contains a broken access control vulnerability in versions prior to 1.35.5. The flaw resides in group-management endpoints that fail to enforce organization boundaries when persisting MembershipId and CollectionId values. An authenticated attacker holding Admin rights in one organization and low-privileged membership in a second organization can bind foreign membership UUIDs into groups they control. This cross-organization confusion grants unauthorized read access to vault items in the victim organization through /api/sync and /api/ciphers. The same flaw allows the attacker to escalate to write access by binding foreign collection IDs into an accessAll=true group.

Critical Impact

An Admin in one Vaultwarden organization can read and modify vault data belonging to a separate organization where they hold only low-privileged membership, breaking tenant isolation.

Affected Products

  • Dani-garcia Vaultwarden versions prior to 1.35.5
  • Self-hosted Vaultwarden deployments serving multiple organizations
  • Multi-tenant Bitwarden-compatible Rust server instances

Discovery Timeline

  • 2026-05-11 - CVE-2026-43912 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43912

Vulnerability Analysis

The vulnerability is an authorization bypass classified under [CWE-285] Improper Authorization. Vaultwarden organizes vault data into organizations, groups, members, and collections. Group membership is stored in groups_users with a users_organizations_uuid foreign key, while collection-to-group mappings live in collections_groups. Vaultwarden does not validate that the users_organizations_uuid belongs to the same organization as the groups_uuid it is being attached to. The same check is missing between collections_groups.collections_uuid and collections_groups.groups_uuid. Group-management endpoints accept these identifiers from the client and persist them without consistency checks.

Root Cause

Multiple organization group-management handlers trust client-supplied MembershipId and CollectionId values. The server writes these rows directly into the relational store without joining against the parent organization. As a result, references that point across organization boundaries become valid records, and downstream authorization logic treats them as legitimate group bindings.

Attack Vector

The attacker first creates or controls a group in Organization A with accessAll=true. They then call a group-management endpoint to add their Organization B MembershipId to that Org A group. Subsequent calls to /api/sync and /api/ciphers enumerate Org B ciphers because the access-check logic follows the forged group relationship. Once Org B collection UUIDs are revealed, the attacker binds those CollectionId values into the same Org A group, gaining write access over Org B items. The attack requires network access and authenticated high-privilege credentials in the attacker-controlled organization, with no user interaction in the victim organization.

See the GitHub Security Advisory GHSA-569v-845w-g82p for the upstream technical write-up.

Detection Methods for CVE-2026-43912

Indicators of Compromise

  • Rows in groups_users where users_organizations_uuid resolves to a different organization than the parent groups.organization_uuid.
  • Rows in collections_groups where collections_uuid belongs to a different organization than the linked group.
  • Unexpected /api/sync or /api/ciphers responses returning ciphers from organizations the requesting account is not a full member of.

Detection Strategies

  • Run integrity queries against the Vaultwarden database to identify cross-organization references in groups_users and collections_groups.
  • Inspect application logs for repeated PUT or POST requests to /api/organizations/{org_id}/groups/* endpoints originating from a single user across multiple organizations.
  • Alert on accounts that hold Admin rights in one organization while simultaneously holding low-privilege membership in others, then issue group-modification API calls in short succession.

Monitoring Recommendations

  • Enable verbose request logging on the Vaultwarden reverse proxy and forward to a central SIEM for correlation of cross-organization API patterns.
  • Track baseline volumes of /api/sync responses per account and alert on sudden growth in returned cipher counts.
  • Audit group membership and collection assignment changes on a recurring schedule and reconcile against expected organizational structure.

How to Mitigate CVE-2026-43912

Immediate Actions Required

  • Upgrade Vaultwarden to version 1.35.5 or later on all self-hosted instances.
  • Audit existing groups_users and collections_groups tables for cross-organization references and remove invalid rows.
  • Rotate organization-level secrets and review access logs for unauthorized cipher access during the exposure window.

Patch Information

The fix is published in Vaultwarden 1.35.5, which adds organization consistency checks to the group-management endpoints. Refer to the Vaultwarden GitHub Security Advisory for release details and patch commits.

Workarounds

  • Restrict Admin role assignments so users do not simultaneously hold Admin privileges in one organization and membership in unrelated organizations on the same instance.
  • Disable group features for affected organizations until the upgrade to 1.35.5 is applied.
  • Segregate sensitive organizations onto dedicated Vaultwarden instances to remove the shared-tenancy attack surface.
bash
# Upgrade Vaultwarden container to the patched release
docker pull vaultwarden/server:1.35.5
docker stop vaultwarden
docker rm vaultwarden
docker run -d --name vaultwarden \
  -v /vw-data/:/data/ \
  -p 80:80 \
  vaultwarden/server:1.35.5

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechVaultwarden

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

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

  • CVE-2026-43913: Vaultwarden Auth Bypass Vulnerability

  • CVE-2026-43911: Vaultwarden Auth Bypass Vulnerability

  • CVE-2026-33420: Vaultwarden Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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