banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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-23477

CVE-2026-23477: Rocket.Chat Information Disclosure Flaw

CVE-2026-23477 is an information disclosure vulnerability in Rocket.Chat that exposes OAuth credentials to authenticated users. This post covers the technical details, affected versions, security impact, and mitigation.

Published: January 23, 2026

CVE-2026-23477 Overview

CVE-2026-23477 is an information disclosure vulnerability affecting Rocket.Chat, an open-source, secure, fully customizable communications platform. In versions prior to 6.12.0, the API endpoint GET /api/v1/oauth-apps.get is exposed to any authenticated user, regardless of their role or permissions. This endpoint returns OAuth application data when a user knows the application ID, including potentially sensitive fields such as client_id and client_secret. This represents a significant broken access control flaw that could lead to unauthorized access to integrated systems.

Critical Impact

Authenticated users can access sensitive OAuth application credentials including client secrets, potentially enabling unauthorized access to connected third-party services and OAuth-protected resources.

Affected Products

  • Rocket.Chat versions prior to 6.12.0
  • Self-hosted Rocket.Chat deployments with OAuth integrations
  • Rocket.Chat instances with custom OAuth applications configured

Discovery Timeline

  • January 14, 2026 - CVE-2026-23477 published to NVD
  • January 16, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23477

Vulnerability Analysis

This vulnerability is classified under CWE-269 (Improper Privilege Management), indicating a fundamental flaw in how Rocket.Chat handles authorization for the OAuth applications API endpoint. The core issue stems from the application failing to verify whether an authenticated user has the appropriate permissions to access OAuth application details before returning sensitive data.

The /api/v1/oauth-apps.get endpoint should be restricted to administrators or users with explicit OAuth management privileges. Instead, the endpoint grants access to any authenticated user who can provide a valid OAuth application ID. This design flaw exposes client_id and client_secret values that are critical security components of the OAuth 2.0 flow.

Exposure of these credentials could allow attackers to impersonate the legitimate application when authenticating against OAuth providers, intercept authorization codes, or gain unauthorized access to user data and resources protected by the compromised OAuth integration.

Root Cause

The root cause of this vulnerability is insufficient authorization validation on the /api/v1/oauth-apps.get API endpoint. The endpoint only verifies that a user is authenticated but does not check whether the authenticated user has administrative privileges or specific permissions to view OAuth application configurations.

This represents a classic broken access control vulnerability where the application relies solely on authentication status rather than implementing proper role-based access control (RBAC) for sensitive administrative functions.

Attack Vector

The attack vector for this vulnerability is network-based and requires a low-privilege authenticated user. An attacker who has obtained valid credentials to a Rocket.Chat instance (even as a regular user) can exploit this vulnerability by:

  1. Enumerating or guessing OAuth application IDs
  2. Making authenticated API requests to /api/v1/oauth-apps.get with target application IDs
  3. Extracting the returned client_id and client_secret values
  4. Using the stolen credentials to impersonate the legitimate OAuth application

The vulnerability requires network access to the Rocket.Chat API and any valid authenticated session. The attack does not require user interaction beyond the attacker authenticating to the platform.

Detection Methods for CVE-2026-23477

Indicators of Compromise

  • Unusual API requests to /api/v1/oauth-apps.get from non-administrative user accounts
  • Multiple requests to the OAuth apps endpoint with sequential or enumerated application IDs
  • Access logs showing OAuth endpoint queries from users who should not require OAuth management capabilities
  • Suspicious OAuth token generation activity from previously dormant or newly compromised OAuth applications

Detection Strategies

  • Monitor API access logs for calls to /api/v1/oauth-apps.get and correlate with user roles to identify unauthorized access attempts
  • Implement alerting for any non-administrator user accessing OAuth-related API endpoints
  • Review authentication logs for OAuth applications to identify unexpected credential usage patterns
  • Deploy API gateway rules to log and alert on sensitive endpoint access patterns

Monitoring Recommendations

  • Enable detailed API logging for all OAuth-related endpoints in Rocket.Chat
  • Configure SIEM rules to detect enumeration patterns against OAuth application endpoints
  • Establish baseline behavior for OAuth API access and alert on deviations
  • Monitor for OAuth token generation from applications that recently had their endpoints queried

How to Mitigate CVE-2026-23477

Immediate Actions Required

  • Upgrade Rocket.Chat to version 6.12.0 or later immediately
  • Rotate all OAuth application client_secret values for any applications configured in affected Rocket.Chat instances
  • Review API access logs to determine if the vulnerability may have been exploited
  • Audit connected OAuth provider logs for suspicious authorization activity

Patch Information

Rocket.Chat has addressed this vulnerability in version 6.12.0. The fix implements proper authorization checks on the /api/v1/oauth-apps.get endpoint to ensure only users with appropriate administrative permissions can access OAuth application details including sensitive credentials.

Organizations should upgrade to version 6.12.0 or the latest available version as soon as possible. For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Implement network-level access controls to restrict API access to trusted IP ranges or VPN users only
  • Use a reverse proxy or API gateway to block unauthenticated access to /api/v1/oauth-apps.get endpoint until patching is complete
  • Temporarily disable OAuth integrations if they are not critical to operations
  • Implement additional authentication requirements (MFA) for all users to reduce risk of credential compromise
bash
# Example: Block access to vulnerable endpoint using nginx
# Add to your nginx configuration for Rocket.Chat
location /api/v1/oauth-apps.get {
    # Only allow access from admin IP ranges
    allow 10.0.0.0/8;
    deny all;
    proxy_pass http://rocketchat_backend;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRocket Chat

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-269
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2022-32211: Rocket.Chat SQLi Vulnerability
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
  • English
  • 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