Join 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
      Digital Forensics, IRR & Breach Readiness
    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-2025-69284

CVE-2025-69284: Plane.io Information Disclosure Flaw

CVE-2025-69284 is an information disclosure vulnerability in Plane.io that allows guest users to access workspace member data and expose admin email addresses. This article covers technical details, affected versions, and fixes.

Updated: January 22, 2026

CVE-2025-69284 Overview

CVE-2025-69284 is an information disclosure vulnerability in Plane, an open-source project management tool. The vulnerability allows guest users to access the /api/workspaces/:slug/members/ API endpoint, enabling them to enumerate workspace members and potentially identify administrator email addresses through the display_name field returned in the API response.

Critical Impact

Guest users can enumerate workspace members and identify admin email addresses, potentially enabling targeted phishing attacks or social engineering campaigns against privileged users.

Affected Products

  • Plane versions prior to 1.2.0
  • Plane.io cloud instances (app.plane.so)
  • Self-hosted Plane deployments running vulnerable versions

Discovery Timeline

  • 2026-01-02 - CVE-2025-69284 published to NVD
  • 2026-01-02 - Last updated in NVD database

Technical Details for CVE-2025-69284

Vulnerability Analysis

This vulnerability stems from improper access control (CWE-284) in Plane's workspace member enumeration API. While the application properly restricts guest users from accessing the settings page at https://app.plane.so/:slug/settings, the underlying API endpoint /api/workspaces/:slug/members/ remains accessible to users with guest-level privileges.

The core issue is an inconsistency between the frontend access controls and backend API authorization. Guest users, who should have minimal read-only access to workspace resources, can directly query the members API endpoint to retrieve a list of all users within a workspace they've been invited to.

More critically, the API response includes the display_name field, which appears to be derived from the user's email handle (the portion before the @ symbol). This information leakage allows malicious guests to reconstruct or infer the email addresses of administrators and other privileged users within the workspace.

Root Cause

The root cause is a broken access control implementation where API-level authorization checks do not match the intended permission model for guest users. The /api/workspaces/:slug/members/ endpoint fails to validate whether the requesting user has sufficient privileges to view member details, and the response includes sensitive user identifier information that should be filtered or anonymized for lower-privileged users.

Attack Vector

The attack is network-based and requires low privileges (an existing guest account within the target workspace). An attacker who has been invited as a guest to any Plane workspace can exploit this vulnerability through the following approach:

  1. The attacker obtains guest access to a target workspace through legitimate invitation
  2. Using browser developer tools or API clients, the attacker directly requests the members endpoint
  3. The API returns the full list of workspace members including their display_name values
  4. The attacker correlates display names to email addresses, particularly targeting administrator accounts
  5. This information can then be used for targeted phishing, credential stuffing, or social engineering attacks

The vulnerability requires no user interaction and can be exploited with a simple authenticated GET request to the vulnerable API endpoint.

Detection Methods for CVE-2025-69284

Indicators of Compromise

  • Unusual API requests from guest accounts to /api/workspaces/:slug/members/ endpoints
  • Elevated frequency of member enumeration requests from specific user sessions
  • Guest accounts making API requests that bypass the normal application UI flow
  • Sequential requests to workspace member endpoints across multiple workspaces from the same session

Detection Strategies

  • Monitor API access logs for guest users accessing workspace member listing endpoints
  • Implement rate limiting and alerting on the /api/workspaces/:slug/members/ endpoint
  • Review access patterns for authenticated users querying member information outside of normal application workflows
  • Deploy web application firewall (WAF) rules to flag direct API access from guest-authenticated sessions

Monitoring Recommendations

  • Enable detailed API access logging with user role and privilege level context
  • Configure alerts for guest accounts accessing administrative or member management endpoints
  • Implement behavioral analysis to detect reconnaissance patterns typical of pre-attack enumeration
  • Regularly audit workspace member permissions and identify over-privileged guest accounts

How to Mitigate CVE-2025-69284

Immediate Actions Required

  • Upgrade Plane installations to version 1.2.0 or later immediately
  • Audit guest user access within workspaces and review member lists for sensitive accounts
  • Consider temporarily restricting guest access to workspaces containing sensitive projects until patching is complete
  • Review API access logs for signs of prior exploitation or member enumeration activity

Patch Information

Plane version 1.2.0 addresses this vulnerability by implementing proper access control checks on the workspace members API endpoint. Organizations running self-hosted Plane instances should upgrade immediately. For the official security advisory and detailed patch information, refer to the GitHub Security Advisory GHSA-7qx6-6739-c7qr.

Workarounds

  • Restrict guest invitations to workspaces until the patch can be applied
  • Implement network-level access controls to limit API endpoint access to trusted sources
  • Deploy a reverse proxy or API gateway to add additional authorization checks on sensitive endpoints
  • Use unique, non-identifying display names for administrative accounts to limit information exposure

For environments where immediate patching is not possible, consider deploying API gateway rules to block guest-authenticated requests to the /api/workspaces/:slug/members/ endpoint while maintaining normal application functionality for authorized users.

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPlane

  • 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-284
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27706: Plane Project Management Tool SSRF Flaw

  • CVE-2026-27705: Plane Auth Bypass 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