Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-28514

CVE-2026-28514: Rocket.Chat Auth Bypass Vulnerability

CVE-2026-28514 is an authentication bypass flaw in Rocket.Chat that allows attackers to log in as any user with an arbitrary password. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2026-28514 Overview

CVE-2026-28514 is a critical authentication bypass vulnerability in Rocket.Chat, an open-source, secure, and fully customizable communications platform. The vulnerability exists in Rocket.Chat's account service used in the ddp-streamer micro service, allowing an attacker to log in to the service as any user with a password set, using any arbitrary password. This flaw stems from a missing await keyword when calling an asynchronous password validation function, causing a Promise object (which is always truthy) to be evaluated instead of the actual boolean validation result.

Critical Impact

This vulnerability allows complete account takeover of any user whose username is known or guessable, bypassing all password authentication controls through exploitation of an asynchronous code handling flaw.

Affected Products

  • Rocket.Chat versions prior to 7.8.6
  • Rocket.Chat versions prior to 7.9.8
  • Rocket.Chat versions prior to 7.10.7
  • Rocket.Chat versions prior to 7.11.4
  • Rocket.Chat versions prior to 7.12.4
  • Rocket.Chat versions prior to 7.13.3
  • Rocket.Chat versions prior to 8.0.0

Discovery Timeline

  • 2026-03-06 - CVE-2026-28514 published to NVD
  • 2026-03-09 - Last updated in NVD database

Technical Details for CVE-2026-28514

Vulnerability Analysis

This authentication bypass vulnerability (CWE-287) resides in Rocket.Chat's account service within the ddp-streamer micro service. The core issue is a missing await keyword in the asynchronous password validation logic. When an asynchronous function is called without the await keyword, JavaScript returns a Promise object instead of waiting for the actual result. Since Promise objects are always truthy in JavaScript, the authentication check incorrectly evaluates to true regardless of whether the provided password is correct.

This flaw enables attackers to authenticate as any user account that has a password configured, simply by knowing or guessing the target username. The vulnerability is network-accessible and requires no prior authentication or user interaction, making it particularly dangerous in internet-facing Rocket.Chat deployments.

Root Cause

The root cause is a missing await keyword in the password validation code path within the ddp-streamer micro service's account authentication logic. When the asynchronous password comparison function is called without await, the code evaluates the Promise object itself (which is truthy) rather than the resolved boolean result of the password validation. This effectively bypasses all password checking, treating every password as valid.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can exploit this vulnerability through the following mechanism:

  1. The attacker identifies a target username on the Rocket.Chat instance (usernames may be enumerable or guessable)
  2. The attacker initiates a login request through the ddp-streamer service with the target username and any arbitrary password
  3. The vulnerable authentication code fails to await the password validation Promise
  4. The Promise object evaluates as truthy, bypassing password verification
  5. The attacker gains full access to the target user's account

The vulnerability mechanism involves an asynchronous password validation function that returns a Promise. When the calling code fails to use the await keyword, JavaScript evaluates the Promise object itself rather than waiting for its resolved value. Since all objects (including Promise objects) are truthy in JavaScript, the authentication check passes regardless of the actual password validity. For technical implementation details, see the GitHub Commit Update and GitHub Security Advisory.

Detection Methods for CVE-2026-28514

Indicators of Compromise

  • Multiple successful login events for the same user account from different IP addresses or unusual geographic locations
  • Authentication logs showing successful logins without corresponding valid password hashes being compared
  • Abnormal user session activity following authentication events, particularly from previously unseen IP addresses
  • Sudden access to sensitive channels or data by accounts that typically don't access such resources

Detection Strategies

  • Monitor authentication logs for anomalous login patterns, particularly multiple successful authentications for single accounts from diverse sources
  • Implement alerting on login events from unexpected geographic locations or IP ranges
  • Review ddp-streamer service logs for unusual authentication traffic patterns
  • Deploy web application firewall (WAF) rules to detect and alert on brute-force login attempts targeting known usernames

Monitoring Recommendations

  • Enable verbose logging for the ddp-streamer micro service authentication events
  • Configure SIEM rules to correlate authentication events with subsequent suspicious user activity
  • Monitor for enumeration attempts targeting user directories or contact lists
  • Implement anomaly detection for user behavior following authentication events

How to Mitigate CVE-2026-28514

Immediate Actions Required

  • Upgrade Rocket.Chat to patched versions 7.8.6, 7.9.8, 7.10.7, 7.11.4, 7.12.4, 7.13.3, or 8.0.0 immediately
  • Review authentication logs for signs of exploitation prior to patching
  • Consider temporarily restricting access to the Rocket.Chat instance to trusted networks until patching is complete
  • Force password resets for sensitive accounts, particularly administrative users

Patch Information

Rocket.Chat has released security patches in versions 7.8.6, 7.9.8, 7.10.7, 7.11.4, 7.12.4, 7.13.3, and 8.0.0. The fix adds the missing await keyword to properly handle the asynchronous password validation function, ensuring the actual boolean validation result is evaluated. Review the GitHub Pull Request for implementation details and the GitHub Commit Update for the specific code changes.

Workarounds

  • Implement network-level access controls to restrict Rocket.Chat access to trusted IP ranges only
  • Enable multi-factor authentication (MFA) for all user accounts to add an additional authentication layer
  • Consider placing the Rocket.Chat instance behind a VPN until patches can be applied
  • Disable external access to the ddp-streamer service if possible without breaking required functionality
bash
# Example: Restrict Rocket.Chat access to trusted networks using iptables
iptables -A INPUT -p tcp --dport 3000 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 3000 -s 192.168.0.0/16 -j ACCEPT
iptables -A INPUT -p tcp --dport 3000 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechRocket Chat

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-30831: Rocket.Chat Auth Bypass Vulnerability

  • CVE-2026-22560: Rocket.Chat Open Redirect Vulnerability

  • CVE-2026-30833: Rocket.Chat NoSQL Injection Vulnerability

  • CVE-2025-7974: Rocket.chat Information Disclosure Flaw
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