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

CVE-2026-33420: Vaultwarden Auth Bypass Vulnerability

CVE-2026-33420 is an authorization bypass flaw in Vaultwarden that allows Manager-role users to access collection data without proper authorization. This post covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-33420 Overview

CVE-2026-33420 is a missing authorization vulnerability [CWE-862] in Vaultwarden, a Bitwarden-compatible server written in Rust. The flaw resides in the get_org_collections_details endpoint, reachable at GET /api/organizations/{org_id}/collections/details. The endpoint omits the has_full_access() authorization check that protects the sibling get_org_collections endpoint. A Manager-role user with accessAll=False and no collection assignments can enumerate every collection in the organization. Exposed data includes collection names, UUIDs, user-to-collection mappings, and group-to-collection mappings. Versions 1.35.4 and earlier are affected, and version 1.35.5 contains the fix.

Critical Impact

Authenticated Manager-role users can enumerate all organization collections, users, and group mappings without holding access to those collections.

Affected Products

  • Vaultwarden versions up to and including 1.35.4
  • Vaultwarden Manager-role accounts with accessAll=False
  • Self-hosted Bitwarden-compatible deployments using Vaultwarden

Discovery Timeline

  • 2026-05-05 - CVE-2026-33420 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-33420

Vulnerability Analysis

The vulnerability is a broken access control issue in Vaultwarden's organization API. Two sibling endpoints expose collection data: get_org_collections and get_org_collections_details. The first endpoint enforces a has_full_access() check before returning collection metadata. The second endpoint, intended to return richer detail including user and group mappings, omits that check entirely.

A Manager-role account in Bitwarden's permission model is expected to manage only collections explicitly assigned to it. When accessAll is set to False and no collections are assigned, the user should see nothing. The missing authorization check on the details endpoint breaks that boundary and returns metadata for every collection in the organization.

Root Cause

The root cause is a missing authorization gate on a privileged read endpoint. The handler for GET /api/organizations/{org_id}/collections/details proceeds directly to data retrieval without confirming the caller has full access or specific collection assignments. This is a classic CWE-862 Missing Authorization defect, where one route in a pair of similar handlers fails to replicate the access check applied to its counterpart.

Attack Vector

Exploitation requires an authenticated session as a Manager-role member of the target organization. The attacker issues a single HTTP GET request to /api/organizations/{org_id}/collections/details using the organization UUID. The server returns the full list of collections along with user and group mappings. No elevation, code execution, or vault item content disclosure occurs, but the disclosed mapping data supports targeted social engineering and lateral movement planning. Refer to the GitHub Security Advisory GHSA-jjxg-p3v6-52ww for endpoint specifics.

Detection Methods for CVE-2026-33420

Indicators of Compromise

  • HTTP requests to /api/organizations/{org_id}/collections/details originating from Manager-role accounts that hold no collection assignments.
  • Repeated enumeration of organization UUIDs by a single authenticated session within a short window.
  • Application logs showing successful 200 responses on the details endpoint to users without accessAll privileges.

Detection Strategies

  • Compare request actors against the organization's role and accessAll attributes; alert when Manager-role users with no assignments receive non-empty responses from the details endpoint.
  • Baseline normal usage of collections/details per role and flag deviations.
  • Correlate access patterns with subsequent authentication or sharing events that suggest reconnaissance follow-through.

Monitoring Recommendations

  • Enable verbose access logging on the Vaultwarden reverse proxy and forward to a SIEM with role context.
  • Track HTTP status, path, organization UUID, and authenticated user UUID on every /api/organizations/* call.
  • Review audit trails for newly created Manager-role accounts and inspect their early API behavior.

How to Mitigate CVE-2026-33420

Immediate Actions Required

  • Upgrade Vaultwarden to version 1.35.5 or later, which restores the has_full_access() authorization check on the details endpoint.
  • Audit all Manager-role accounts for unexpected reads against /api/organizations/{org_id}/collections/details in the affected timeframe.
  • Rotate or review group and collection memberships if reconnaissance is suspected.

Patch Information

The maintainers released the fix in Vaultwarden 1.35.5. The patch adds the missing authorization check to get_org_collections_details, aligning its behavior with get_org_collections. Operators running container images should pull the updated tag and redeploy. Full advisory details are available in GHSA-jjxg-p3v6-52ww.

Workarounds

  • Until upgrade is possible, restrict creation of Manager-role accounts and convert affected users to roles that do not expose the endpoint.
  • Block or rate-limit the /api/organizations/{org_id}/collections/details path at the reverse proxy for non-administrative accounts.
  • Apply network-level access controls to limit Vaultwarden API exposure to trusted clients only.
bash
# Pull and deploy the fixed Vaultwarden 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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Vaultwarden Release 1.35.5

  • GitHub Security Advisory GHSA-jjxg-p3v6-52ww
  • Related CVEs
  • CVE-2026-27801: Vaultwarden 2FA Bypass Vulnerability

  • CVE-2026-27803: Vaultwarden Auth Bypass Vulnerability

  • CVE-2026-26012: Vaultwarden Auth Bypass Vulnerability

  • CVE-2024-55225: Vaultwarden Auth Bypass 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