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

CVE-2026-26012: Vaultwarden Auth Bypass Vulnerability

CVE-2026-26012 is an authentication bypass flaw in Vaultwarden allowing organization members to access all ciphers without proper collection permissions. This article covers technical details, affected versions, and fixes.

Published: February 13, 2026

CVE-2026-26012 Overview

CVE-2026-26012 is a Broken Access Control vulnerability in Vaultwarden, an unofficial Bitwarden-compatible server written in Rust (formerly known as bitwarden_rs). Prior to version 1.35.3, a regular organization member can retrieve all ciphers within an organization, regardless of their collection-level permissions. The vulnerable endpoint /ciphers/organization-details is accessible to any organization member and internally uses Cipher::find_by_org to retrieve all ciphers without enforcing proper collection-level access control.

Critical Impact

Unauthorized access to sensitive password vault data allows low-privileged organization members to view all stored credentials, secrets, and secure notes across the entire organization, bypassing intended collection-based access restrictions.

Affected Products

  • Vaultwarden versions prior to 1.35.3
  • Self-hosted Bitwarden-compatible deployments using vulnerable Vaultwarden builds
  • Docker deployments using Vaultwarden images before the 1.35.3 release

Discovery Timeline

  • 2026-02-11 - CVE-2026-26012 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-26012

Vulnerability Analysis

This vulnerability represents a classic Broken Access Control flaw (CWE-863: Incorrect Authorization) in the Vaultwarden password manager server. The core issue lies in the /ciphers/organization-details API endpoint, which fails to enforce collection-level access control when returning cipher data to organization members.

In Vaultwarden's organizational model, ciphers (encrypted password entries, secure notes, etc.) are organized into collections, and users are granted access to specific collections rather than the entire organization's vault. However, the vulnerable endpoint bypasses this security model entirely by calling Cipher::find_by_org to fetch all organization ciphers and returning them with CipherSyncType::Organization without validating whether the requesting user has permission to access each cipher's associated collection.

This allows any authenticated organization member—even those with minimal permissions—to enumerate and retrieve the full contents of an organization's password vault, including credentials they should not have access to.

Root Cause

The root cause is missing authorization checks in the /ciphers/organization-details endpoint handler. The code retrieves all ciphers belonging to an organization using Cipher::find_by_org but fails to filter the results based on the authenticated user's collection memberships. The response is constructed using CipherSyncType::Organization which assumes organization-wide access rather than respecting the collection-based permission model.

Attack Vector

The attack can be executed over the network by any authenticated user who is a member of a Vaultwarden organization. The attacker requires low-level privileges (basic organization membership) and no user interaction is needed. The attack flow involves:

  1. The attacker authenticates to the Vaultwarden instance as a regular organization member
  2. The attacker sends a request to the /ciphers/organization-details endpoint
  3. The server returns all organization ciphers without validating collection permissions
  4. The attacker can now access credentials and secrets from collections they should not have access to

The vulnerability is exploited by simply making an authenticated API request to the vulnerable endpoint. An attacker with basic organization membership can access the full organization cipher database, including credentials assigned to restricted collections. For technical implementation details, refer to the GitHub Security Advisory GHSA-h265-g7rm-h337.

Detection Methods for CVE-2026-26012

Indicators of Compromise

  • Unusual or excessive API requests to /ciphers/organization-details from low-privileged organization members
  • Access log entries showing cipher retrieval requests from users who should not have organization-wide access
  • Audit trail inconsistencies where users accessed ciphers outside their assigned collections
  • Multiple rapid requests to organization cipher endpoints indicating automated enumeration

Detection Strategies

  • Monitor API access logs for requests to /ciphers/organization-details and correlate with user permission levels
  • Implement application-layer logging to track cipher access patterns and flag anomalous behavior
  • Review Vaultwarden access logs for unauthorized data access patterns from organization members
  • Deploy network monitoring to detect bulk data exfiltration from the Vaultwarden API

Monitoring Recommendations

  • Enable verbose logging in Vaultwarden to capture all API endpoint access with user context
  • Set up alerts for organization members accessing cipher counts that exceed their collection permissions
  • Implement periodic access control audits comparing user permissions to actual data access patterns
  • Monitor for changes in organization membership that could indicate insider threat preparation

How to Mitigate CVE-2026-26012

Immediate Actions Required

  • Upgrade Vaultwarden to version 1.35.3 or later immediately
  • Audit organization membership and remove any unnecessary or suspicious accounts
  • Review access logs for potential exploitation during the vulnerability window
  • Rotate credentials stored in affected organization vaults as a precautionary measure
  • Consider temporarily restricting organization access until the patch is applied

Patch Information

The vulnerability is fixed in Vaultwarden version 1.35.3. The patch implements proper collection-level access control checks in the /ciphers/organization-details endpoint, ensuring users can only retrieve ciphers from collections they have been explicitly granted access to. The fix is available from the Vaultwarden 1.35.3 Release.

Workarounds

  • Restrict network access to the Vaultwarden instance to trusted IP ranges only
  • Implement additional authentication layers (reverse proxy with MFA) to limit API access
  • Temporarily disable organization features if upgrading is not immediately possible
  • Apply network segmentation to isolate the Vaultwarden server from untrusted network segments
bash
# Example: Upgrade Vaultwarden Docker deployment to patched version
docker pull vaultwarden/server:1.35.3
docker stop vaultwarden
docker rm vaultwarden
docker run -d --name vaultwarden \
  -v /vw-data/:/data/ \
  -p 80:80 \
  vaultwarden/server:1.35.3

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 Score6.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Vaultwarden Release 1.35.3

  • GitHub Security Advisory GHSA-h265-g7rm-h337
  • Related CVEs
  • CVE-2026-27801: Vaultwarden 2FA Bypass Vulnerability

  • CVE-2026-27803: Vaultwarden Auth Bypass Vulnerability

  • CVE-2026-27898: Vaultwarden Information Disclosure Flaw

  • CVE-2026-27802: Vaultwarden Privilege Escalation Flaw
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