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-2025-49845

CVE-2025-49845: Discourse Information Disclosure Flaw

CVE-2025-49845 is an information disclosure vulnerability in Discourse that allows users to view their own whisper posts after losing group permissions. This article covers technical details, affected versions, and patches.

Updated: May 11, 2026

CVE-2025-49845 Overview

CVE-2025-49845 is an information disclosure vulnerability in Discourse, an open-source discussion platform. The flaw resides in how Discourse enforces visibility of posts typed as whisper. The whispers_allowed_groups site setting restricts whisper visibility to users in approved groups. However, users who lose membership in those groups retain visibility of their own previously authored whisper posts. This breaks the expected access control model after group membership changes. The issue affects versions prior to 3.4.6 on the stable branch and prior to 3.5.0.beta8-dev on the tests-passed branch [CWE-200].

Critical Impact

Users removed from whisper-allowed groups can still view their own whisper posts, leading to unintended disclosure of moderator-restricted content.

Affected Products

  • Discourse stable branch versions prior to 3.4.6
  • Discourse tests-passed branch versions prior to 3.5.0.beta8-dev
  • Self-hosted and managed Discourse deployments using whisper functionality

Discovery Timeline

  • 2025-06-25 - CVE-2025-49845 published to NVD
  • 2025-08-25 - Last updated in NVD database

Technical Details for CVE-2025-49845

Vulnerability Analysis

Discourse uses the whisper post type to allow staff and authorized group members to leave private notes on topics. Visibility of these posts is gated by the whispers_allowed_groups site setting. Only members of the configured groups can view whisper content.

The vulnerability stems from an authorization check gap. When a user's group membership changes such that they no longer satisfy whispers_allowed_groups, the platform correctly hides whispers authored by other users. However, the visibility filter does not apply to whispers the user previously authored. The user continues to read their own historical whisper posts despite no longer holding the required permission.

This is an information disclosure issue categorized under [CWE-200]. Exploitation requires no special tooling. A user whose group membership has been revoked simply navigates to topics where they previously posted whispers. The data they see may include moderator deliberations or internal commentary that the operator intended to restrict.

Root Cause

The root cause is an incomplete authorization filter in the post visibility logic. The filter scopes whisper visibility based on group membership but contains an ownership-based exception that returns whispers authored by the requesting user regardless of current group status.

Attack Vector

The attack vector is network-based and requires an authenticated user account. The attacker must have previously authored whisper posts while a member of an allowed group, then later been removed from that group. No technical exploitation code is required to access the disclosed content.

No public proof-of-concept code has been released for this issue. See the GitHub Security Advisory GHSA-79qw-r73r-69gf for vendor details.

Detection Methods for CVE-2025-49845

Indicators of Compromise

  • Access log entries showing users viewing whisper posts after their removal from groups defined in whispers_allowed_groups
  • Audit log records of group membership changes followed by topic views containing whisper content
  • Unexpected user-reported sightings of moderator-only commentary

Detection Strategies

  • Correlate group membership change events with subsequent post-view events for whisper-typed posts
  • Query the Discourse database for users who authored whisper posts and currently lack membership in any group listed in whispers_allowed_groups
  • Review application audit trails for whisper post access requests from non-staff accounts

Monitoring Recommendations

  • Enable verbose access logging on Discourse forum endpoints that render topic content
  • Track changes to the whispers_allowed_groups site setting and to membership of those groups
  • Periodically audit accounts that have authored whisper posts to verify they retain appropriate authorization

How to Mitigate CVE-2025-49845

Immediate Actions Required

  • Upgrade Discourse stable deployments to version 3.4.6 or later
  • Upgrade Discourse tests-passed deployments to version 3.5.0.beta8-dev or later
  • Review historical whisper content for sensitivity and rotate or redact information accessible to users removed from allowed groups
  • Audit the current membership of all groups configured in whispers_allowed_groups

Patch Information

Discourse maintainers patched this vulnerability in versions 3.4.6 (stable) and 3.5.0.beta8-dev (tests-passed). The patched code corrects the visibility filter so that ownership of a whisper post does not bypass the group membership requirement. Refer to the Discourse GitHub Security Advisory for the full advisory.

Workarounds

  • No vendor-supplied workarounds are available; upgrading is the only supported remediation
  • As an interim risk reduction step, restrict whisper authoring to a minimal set of trusted staff accounts whose group membership is stable
  • Consider disabling whisper functionality by clearing whispers_allowed_groups until the upgrade is applied
bash
# Upgrade a self-hosted Discourse instance to the patched stable release
cd /var/discourse
git pull
./launcher rebuild app
# Verify the running version is 3.4.6 or later
./launcher logs app | grep -i version

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 Score6.3

  • EPSS Probability0.51%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/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

  • NVD-CWE-noinfo
  • 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