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

CVE-2025-14350: Mattermost Server Information Disclosure

CVE-2025-14350 is an information disclosure vulnerability in Mattermost Server that allows authenticated users to discover team existence and URL names through channel mentions. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 20, 2026

CVE-2025-14350 Overview

CVE-2025-14350 is a Missing Authorization vulnerability (CWE-862) affecting Mattermost Server that allows authenticated users to enumerate teams and their URL names through improper validation of team membership when processing channel mentions. By posting channel shortlinks and observing the channel_mentions property in the API response, attackers can determine the existence of teams they should not have visibility into.

Critical Impact

Authenticated attackers can discover hidden teams and their URL structures, potentially exposing organizational information and enabling further targeted attacks against specific team resources.

Affected Products

  • Mattermost Server versions 11.1.x <= 11.1.2
  • Mattermost Server versions 10.11.x <= 10.11.9
  • Mattermost Server versions 11.2.x <= 11.2.1

Discovery Timeline

  • 2026-02-16 - CVE-2025-14350 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-14350

Vulnerability Analysis

This vulnerability stems from missing authorization checks in the channel mentions processing functionality of Mattermost Server. When a user posts a message containing a channel shortlink, the server processes the mention and returns information about the referenced channel through the channel_mentions property in the API response. The issue arises because the server fails to verify whether the authenticated user has legitimate membership in the team that owns the referenced channel before returning this information.

The information disclosure allows authenticated users to probe for the existence of teams and extract their URL naming conventions. While the vulnerability requires authentication to exploit, it breaks the expected isolation between teams and undermines the access control model that organizations rely upon to segment their communication channels.

Root Cause

The root cause is a missing authorization check (CWE-862) in the API endpoint that handles channel mention resolution. The server processes channel shortlinks and populates the channel_mentions response property without first validating that the requesting user has membership in the team associated with the mentioned channel. This breaks the principle of least privilege and allows information to leak across team boundaries.

Attack Vector

The attack is conducted over the network by authenticated users who can post messages containing channel shortlinks. The attacker crafts messages with shortlinks referencing channels in teams they do not belong to. By systematically probing different team URL patterns and analyzing the API responses, the attacker can enumerate which teams exist on the Mattermost instance and determine their URL structures. This reconnaissance information could be used to plan subsequent attacks or gain organizational intelligence.

The vulnerability is exploited through the standard Mattermost messaging workflow:

  1. Attacker authenticates to the Mattermost instance with a valid user account
  2. Attacker posts messages containing channel shortlinks with various team URL guesses
  3. The API response's channel_mentions property reveals whether the referenced team exists
  4. Attacker iterates through potential team names to build a map of existing teams

Detection Methods for CVE-2025-14350

Indicators of Compromise

  • Unusual patterns of message posting containing channel shortlinks from a single user
  • API requests to channels in teams where the requesting user has no membership
  • High-frequency message creation followed by immediate deletion
  • Anomalous channel_mentions property access patterns in API logs

Detection Strategies

  • Monitor Mattermost application logs for users attempting to reference channels in teams they do not belong to
  • Implement rate limiting on message creation to slow enumeration attempts
  • Configure alerting for users posting messages with channel shortlinks to non-existent or unauthorized teams
  • Review API access logs for patterns consistent with team enumeration behavior

Monitoring Recommendations

  • Enable detailed logging for channel mention resolution in Mattermost Server
  • Configure SIEM rules to detect repetitive channel shortlink patterns from single users
  • Monitor for correlation between failed team access attempts and channel mention activity
  • Establish baseline metrics for normal channel mention behavior to identify anomalies

How to Mitigate CVE-2025-14350

Immediate Actions Required

  • Upgrade Mattermost Server to patched versions as soon as available
  • Review recent API logs for signs of team enumeration activity
  • Audit user accounts for suspicious messaging patterns involving channel shortlinks
  • Consider restricting channel mention features until patches are applied

Patch Information

Mattermost has released security updates to address this vulnerability. Organizations should upgrade to versions newer than 11.1.2, 10.11.9, and 11.2.1 respectively for each affected branch. For detailed patch information, refer to the Mattermost Security Updates page. The Mattermost Advisory ID for this vulnerability is MMSA-2025-00563.

Workarounds

  • Limit user registration and authentication to reduce the potential attacker pool
  • Implement network segmentation to restrict Mattermost API access to trusted networks
  • Deploy a Web Application Firewall (WAF) to monitor and filter suspicious channel mention patterns
  • Consider temporarily disabling channel shortlink processing if the risk is deemed critical for your environment

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMattermost

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Vendor Resources
  • Mattermost Security Update
  • Related CVEs
  • CVE-2026-3113: Mattermost Information Disclosure Flaw

  • CVE-2026-2458: Mattermost Server Info Disclosure Flaw

  • CVE-2026-2578: Mattermost Server Information Disclosure

  • CVE-2026-1629: Mattermost Server Information Disclosure
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