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

CVE-2026-31869: Discourse Information Disclosure Flaw

CVE-2026-31869 is an information disclosure vulnerability in Discourse that exposes hidden group membership to authenticated users. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-31869 Overview

CVE-2026-31869 is an Information Disclosure vulnerability affecting Discourse, the popular open-source discussion platform. The vulnerability exists in the ComposerController#mentions endpoint, which inadvertently reveals hidden group membership to any authenticated user who has the ability to message the group.

By supplying allowed_names referencing a hidden-membership group and probing arbitrary usernames, an attacker can infer membership based on whether user_reasons returns "private" for a given user. This effectively bypasses the group member-visibility controls that are designed to keep group membership confidential.

Critical Impact

Authenticated attackers can enumerate and discover members of hidden groups by exploiting the ComposerController#mentions endpoint, potentially exposing sensitive organizational structures or privileged user lists.

Affected Products

  • Discourse versions prior to 2026.3.0-latest.1
  • Discourse versions prior to 2026.2.1
  • Discourse versions prior to 2026.1.2

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-31869 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-31869

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw resides in the ComposerController#mentions endpoint, which is designed to assist users when composing messages by suggesting mentions and validating group names.

The root issue stems from improper access control when handling requests that reference hidden-membership groups. When an authenticated user queries the endpoint with allowed_names containing a hidden-membership group identifier along with a username, the response behavior differs based on whether that user is actually a member of the group.

If the queried user is a member of the hidden group, the user_reasons field in the response returns "private" - a distinguishable response that reveals the membership status. This information oracle allows attackers to systematically enumerate group members by iterating through known usernames and observing the response patterns.

Root Cause

The vulnerability originates from insufficient access control validation in the ComposerController#mentions endpoint. The endpoint fails to verify whether the requesting user should have visibility into the membership status of hidden groups before returning differentiated responses. This creates an information leak where the response content inadvertently discloses protected membership information to unauthorized users.

Attack Vector

The attack is network-based and requires the attacker to be authenticated on the Discourse instance. The attacker must have the ability to message the target hidden-membership group. The exploitation process involves:

  1. Identifying a hidden-membership group that the attacker can message
  2. Crafting requests to the ComposerController#mentions endpoint with allowed_names referencing the hidden group
  3. Iterating through potential usernames while observing the user_reasons response field
  4. Determining group membership when "private" is returned for specific users

The attack requires low complexity and no user interaction, making it straightforward for any authenticated user with messaging privileges to exploit.

Detection Methods for CVE-2026-31869

Indicators of Compromise

  • Unusual volume of requests to the ComposerController#mentions endpoint from a single user or session
  • Sequential or automated-looking requests with varying username parameters but consistent allowed_names referencing hidden groups
  • Authentication logs showing repeated access patterns targeting the mentions API endpoint

Detection Strategies

  • Monitor application logs for high-frequency requests to the /composer/mentions or equivalent endpoint
  • Implement rate limiting and anomaly detection for the mentions lookup functionality
  • Create alerts for authenticated users making bulk queries with hidden group references in allowed_names
  • Review access logs for patterns indicating systematic username enumeration

Monitoring Recommendations

  • Enable detailed logging for the ComposerController endpoints to capture request parameters
  • Configure SIEM rules to detect enumeration patterns against the mentions API
  • Monitor for authenticated sessions making an abnormal number of API calls in short time periods
  • Track and alert on requests that reference hidden-membership groups from non-member users

How to Mitigate CVE-2026-31869

Immediate Actions Required

  • Upgrade Discourse to version 2026.3.0-latest.1, 2026.2.1, or 2026.1.2 or later immediately
  • Review hidden-membership group configurations and assess potential exposure
  • Audit logs for any suspicious enumeration activity targeting the mentions endpoint
  • Implement the recommended workaround if patching cannot be completed immediately

Patch Information

Discourse has released security patches in versions 2026.3.0-latest.1, 2026.2.1, and 2026.1.2 that address this vulnerability. The patches correct the access control logic in the ComposerController#mentions endpoint to prevent unauthorized disclosure of hidden group membership information. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Restrict the messageable policy of any hidden-membership group to staff or group members only
  • Disable messaging capabilities for hidden-membership groups until patches can be applied
  • Implement network-level access controls to limit exposure of the Discourse instance to trusted users only
  • Consider temporarily converting hidden-membership groups to standard groups if the membership is not sensitive

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechDiscourse

  • 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:N/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-200
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34947: Discourse Information Disclosure Flaw

  • CVE-2026-32143: Discourse Information Disclosure Flaw

  • CVE-2026-32620: Discourse Information Disclosure Flaw

  • CVE-2026-32951: Discourse 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