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

CVE-2026-43638: Bitwarden Server Auth Bypass Vulnerability

CVE-2026-43638 is an authentication bypass flaw in Bitwarden Server that allows authenticated users to write ciphers into arbitrary organizations. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43638 Overview

CVE-2026-43638 is a missing authorization vulnerability [CWE-862] in Bitwarden Server prior to v2026.4.1. Any authenticated user can write ciphers into an arbitrary organization by sending a POST /ciphers/import-organization request with an empty collections array. The empty array causes the server-side permission check to be skipped, bypassing the organization access controls that normally restrict imports to authorized members.

Critical Impact

Authenticated attackers can inject ciphers into organizations they do not belong to, enabling data pollution, phishing-style credential planting, and integrity attacks against shared password vaults.

Affected Products

  • Bitwarden Server versions prior to v2026.4.1
  • Self-hosted Bitwarden Server deployments
  • Organizations using the /ciphers/import-organization API endpoint

Discovery Timeline

  • 2026-05-11 - CVE-2026-43638 published to NVD
  • 2026-05-16 - Last updated in NVD database

Technical Details for CVE-2026-43638

Vulnerability Analysis

The flaw resides in the ImportCiphersController in the Bitwarden Server API. When a user calls POST /ciphers/import-organization, the controller validates the caller's permission against the list of target collections supplied in the request body. The permission logic assumes that any import request includes at least one collection identifier to authorize against. Submitting an empty collections array satisfies the input schema but produces a permission check that evaluates over zero items, returning a truthy result by default.

The handler then proceeds to write the imported ciphers into the target orgId provided in the request. Because the caller's organization membership and role were never enforced, the write succeeds against organizations the attacker has no relationship with. The vulnerability impacts confidentiality and integrity of organization vault data at low severity, since the attacker writes data but cannot directly exfiltrate existing ciphers.

Root Cause

The root cause is missing authorization on a collection-scoped permission check that fails open when the collection list is empty. The fix renames and replaces the synchronous CheckOrgImportPermission call with an asynchronous CheckOrgImportPermissionAsync and tightens validation so that imports without collections are properly authorized against organization-level roles, including provider access checks.

Attack Vector

The attack vector is network-based and requires only a low-privileged authenticated session. An attacker crafts an HTTP POST to /ciphers/import-organization with a valid bearer token, a target organizationId, a populated ciphers array, and an empty collections: []. The server skips the authorization gate and persists the ciphers under the targeted organization.

text
// Security patch in src/Api/Tools/Controllers/ImportCiphersController.cs
         var collections = model.Collections.Select(c => c.ToCollection(orgId)).ToList();
 
         //An User is allowed to import if CanCreate Collections or has AccessToImportExport
-        var authorized = await CheckOrgImportPermission(collections, orgId);
+        var authorized = await CheckOrgImportPermissionAsync(collections, orgId);
         if (!authorized)
         {
             throw new BadRequestException("Not enough privileges to import into this organization.");

Source: GitHub Commit ebbf6dd0

Detection Methods for CVE-2026-43638

Indicators of Compromise

  • HTTP POST requests to /ciphers/import-organization containing an empty collections array in the JSON body.
  • Unexpected cipher entries appearing in organization vaults that were not created by authorized members.
  • API audit log entries showing successful imports by users who are not members of the target organization.

Detection Strategies

  • Inspect web server and application logs for POST /ciphers/import-organization calls and correlate the requesting user ID with their organization memberships.
  • Alert on import operations where the collections field in the request body is null or empty.
  • Review recent cipher creation events tied to the Import source and validate them against expected organizational workflows.

Monitoring Recommendations

  • Forward Bitwarden Server API logs and database audit events to a centralized SIEM for retroactive review.
  • Baseline normal import volume per organization and trigger anomalies on sudden spikes in cipher creation by single users.
  • Monitor for low-privileged accounts performing administrative actions such as bulk imports across multiple organizations.

How to Mitigate CVE-2026-43638

Immediate Actions Required

  • Upgrade Bitwarden Server to v2026.4.1 or later, which contains the patched CheckOrgImportPermissionAsync authorization check.
  • Audit organization vaults for unexpected ciphers created since deployment of the vulnerable versions and remove unauthorized entries.
  • Rotate any credentials or secrets stored in organizations that show evidence of unauthorized imports.

Patch Information

The fix is delivered in Bitwarden Server release v2026.4.1 via pull request #7394. The patch replaces the permission check with an async variant and adds provider import validation in src/Core/Tools/ImportFeatures/ImportCiphersCommand.cs. Self-hosted operators should pull the updated container image and redeploy. Additional analysis is available in the Bitwarden Import Bypass Analysis and the VulnCheck Advisory for Bitwarden.

Workarounds

  • Restrict access to the Bitwarden API at the network layer to known administrative IPs until patching is complete.
  • Use a reverse proxy or WAF rule to block requests to /ciphers/import-organization that contain an empty collections array.
  • Temporarily disable the import-to-organization feature in client policies if upgrading immediately is not feasible.
bash
# Example NGINX rule to block empty-collections imports until patched
location /ciphers/import-organization {
    if ($request_method = POST) {
        access_by_lua_block {
            ngx.req.read_body()
            local body = ngx.req.get_body_data() or ""
            if body:match('"collections"%s*:%s*%[%s*%]') then
                ngx.exit(403)
            end
        }
    }
    proxy_pass http://bitwarden_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechBitwarden

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/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 Release v2026.4.1

  • Bitwarden Import Bypass Analysis

  • VulnCheck Advisory for Bitwarden
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Pull Request Discussion
  • Related CVEs
  • CVE-2026-43640: Bitwarden Server Auth Bypass Vulnerability

  • CVE-2026-43639: Bitwarden Server Auth Bypass Vulnerability

  • CVE-2026-42994: Bitwarden CLI RCE Vulnerability

  • CVE-2025-5138: Bitwarden Cross-Site Scripting 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