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

CVE-2026-43914: Vaultwarden Auth Bypass Vulnerability

CVE-2026-43914 is an authentication bypass flaw in Vaultwarden that allows attackers to bypass login brute-force protection when email 2FA is enabled. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43914 Overview

CVE-2026-43914 is a brute-force protection bypass affecting Vaultwarden, a Bitwarden-compatible password manager server written in Rust. Versions prior to 1.35.4 expose the send_email_login function at the /api/two-factor/send-email-login endpoint without rate-limiting controls. When email two-factor authentication (2FA) is enabled on the server, this endpoint reveals whether a given username and password combination is valid. Attackers can abuse the endpoint as an oracle to brute-force credentials, including those of users who have not configured email 2FA. The maintainer released version 1.35.4 to address the issue [CWE-307].

Critical Impact

Unauthenticated attackers can perform unlimited password guessing against any Vaultwarden user account when email 2FA is enabled server-wide, leading to credential compromise and unauthorized vault access.

Affected Products

  • Vaultwarden versions prior to 1.35.4
  • Self-hosted Bitwarden-compatible deployments using dani-garcia/vaultwarden
  • Instances with email 2FA enabled in server configuration

Discovery Timeline

  • 2026-05-11 - CVE-2026-43914 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43914

Vulnerability Analysis

The flaw resides in Vaultwarden's email-based 2FA flow, specifically the send_email_login handler defined in email.rs. The endpoint /api/two-factor/send-email-login validates the supplied username and password before deciding whether to dispatch a 2FA email. Vaultwarden applies brute-force protection to its primary login endpoint, but the maintainers did not extend the same rate-limiting middleware to this secondary entry point.

The handler responds differently depending on whether credentials match a valid account. This behavioral divergence converts the endpoint into a credential validation oracle. Attackers can iterate password lists against the endpoint and identify correct combinations from response differences. The issue applies even to accounts that have never enabled email 2FA, because credential validation occurs before the 2FA configuration check.

Root Cause

The root cause is improper restriction of excessive authentication attempts [CWE-307]. The send_email_login route handler authenticates the submitted credentials but lacks the lockout and throttling logic applied to /api/accounts/login. The absence of consistent rate-limiting across all credential-validating endpoints allowed attackers to bypass the protective control.

Attack Vector

An unauthenticated remote attacker sends repeated POST requests to /api/two-factor/send-email-login with a target username and candidate passwords. The endpoint must be reachable over the network, and the server must have email 2FA enabled. The attacker observes response behavior to determine credential validity. No user interaction or prior privileges are required. Once valid credentials are confirmed, the attacker can attempt vault access through the standard login flow.

No public proof-of-concept exploit code is currently available. Refer to the Vaultwarden Security Advisory GHSA-c5rv-q295-7w4g for additional context.

Detection Methods for CVE-2026-43914

Indicators of Compromise

  • High volumes of POST requests to /api/two-factor/send-email-login from a single source IP or distributed set of IPs
  • Repeated requests to the endpoint with varying password parameters for the same username
  • Outbound email queue spikes corresponding to 2FA email dispatches from Vaultwarden
  • Successful logins shortly after sustained request bursts against the 2FA endpoint

Detection Strategies

  • Parse Vaultwarden access logs and reverse proxy logs for request rate anomalies targeting /api/two-factor/send-email-login
  • Correlate failed credential validation responses with subsequent successful authentications from the same client identifiers
  • Baseline normal 2FA email send volume and alert on statistical deviations

Monitoring Recommendations

  • Forward Vaultwarden and reverse proxy logs to a centralized analytics platform with retention for credential abuse investigation
  • Monitor authentication telemetry from identity systems consuming Vaultwarden for unexpected geographic or device shifts
  • Track SMTP relay metrics for unusual surges in 2FA email volume

How to Mitigate CVE-2026-43914

Immediate Actions Required

  • Upgrade all Vaultwarden instances to version 1.35.4 or later without delay
  • Audit access logs for prior abuse of /api/two-factor/send-email-login and force password resets on any suspect accounts
  • Restrict administrative and login endpoints behind a VPN or IP allowlist where feasible
  • Enable account lockout policies and review SMTP delivery logs for anomalies

Patch Information

The maintainer fixed the issue in Vaultwarden 1.35.4. The patch adds brute-force protection to the send_email_login handler so that repeated invalid attempts trigger the same throttling applied to the primary login route. Release notes and the source change are available in the Vaultwarden 1.35.4 Release and the GitHub Pull Request #6867.

Workarounds

  • Disable email 2FA at the server level until the upgrade is applied, which removes the oracle behavior of the vulnerable endpoint
  • Place a Web Application Firewall (WAF) rule in front of Vaultwarden that rate-limits requests to /api/two-factor/send-email-login per source IP and per username
  • Enforce strong, unique passwords and require additional 2FA factors such as TOTP to reduce post-brute-force impact
bash
# Example reverse proxy rate limit (nginx) for the vulnerable endpoint
limit_req_zone $binary_remote_addr zone=vw_2fa:10m rate=5r/m;

location /api/two-factor/send-email-login {
    limit_req zone=vw_2fa burst=5 nodelay;
    proxy_pass http://vaultwarden_upstream;
}

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-307
  • Technical References
  • GitHub Release 1.35.4
  • Vendor Resources
  • GitHub Pull Request

  • GitHub Security Advisory GHSA-c5rv-q295-7w4g
  • Related CVEs
  • CVE-2026-43912: 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