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

CVE-2026-28506: Outline Information Disclosure Flaw

CVE-2026-28506 is an information disclosure vulnerability in Getoutline Outline that exposes sensitive metadata from private drafts and deleted documents. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-28506 Overview

CVE-2026-28506 is an information disclosure vulnerability affecting Outline, a collaborative documentation service. The flaw exists in the events.list API endpoint, which is used for retrieving activity logs. Due to a logic flaw in its filtering mechanism, any authenticated user can retrieve activity events associated with documents that have no collection (such as Private Drafts and Deleted Documents), regardless of the user's actual permissions on those documents.

Critical Impact

While document content is not directly exposed, sensitive metadata including Document IDs, user activity timestamps, and document titles (in cases like Permanent Delete operations) can be leaked. This enables attackers to perform IDOR attacks against other endpoints like documents.restore by eliminating UUID randomness protection.

Affected Products

  • getoutline outline (versions prior to 1.5.0)

Discovery Timeline

  • 2026-03-17 - CVE CVE-2026-28506 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-28506

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The core issue resides in the events.list API endpoint's authorization logic, which fails to properly validate whether the requesting user has legitimate access to documents associated with the returned activity events.

The filtering mechanism incorrectly handles documents that exist outside of collections—specifically Private Drafts and Deleted Documents. When a user queries the activity log endpoint, the system returns events for these orphaned documents without verifying that the requesting user owns or has permission to access them.

The attack requires network access and low-privilege authentication (any valid user account). The vulnerability enables horizontal information disclosure, allowing users to access metadata belonging to other users' private or deleted content.

Root Cause

The root cause is a business logic flaw in the event filtering system. The events.list endpoint applies permission checks based on collection membership, but documents without a collection (Private Drafts, Deleted Documents) bypass these checks entirely. This creates an authorization gap where the system assumes that documents outside collections don't require permission validation.

Attack Vector

An authenticated attacker can exploit this vulnerability through the following approach:

  1. The attacker authenticates to the Outline instance using any valid user credentials
  2. The attacker makes requests to the events.list API endpoint
  3. Due to the flawed filtering logic, the endpoint returns activity events for documents without collections
  4. The attacker extracts Document IDs, timestamps, user activity patterns, and potentially document titles from permanent delete operations
  5. Using the leaked Document IDs, the attacker can attempt IDOR attacks on other endpoints such as documents.restore, since UUID randomness no longer protects these resources

The vulnerability significantly reduces the attack complexity for secondary IDOR exploits by exposing valid Document IDs that would otherwise be protected by UUID unpredictability. See the GitHub Security Advisory for additional technical details.

Detection Methods for CVE-2026-28506

Indicators of Compromise

  • Unusual volume of requests to the events.list API endpoint from a single authenticated user
  • Access patterns showing a user retrieving events for documents they don't own or have explicit access to
  • Sequential or scripted enumeration requests targeting the activity log endpoint

Detection Strategies

  • Monitor API access logs for the events.list endpoint and flag requests returning events for documents outside the requesting user's permission scope
  • Implement anomaly detection for authenticated users accessing activity logs at rates inconsistent with normal usage patterns
  • Review audit logs for correlation between events.list queries and subsequent attempts to access documents.restore or similar endpoints

Monitoring Recommendations

  • Enable detailed logging for the events.list endpoint including request parameters and response metadata counts
  • Configure alerts for authentication sessions that query activity logs and subsequently attempt document restoration operations
  • Establish baseline metrics for activity log API usage to identify statistical anomalies

How to Mitigate CVE-2026-28506

Immediate Actions Required

  • Upgrade Outline to version 1.5.0 or later immediately
  • Review audit logs for potential exploitation attempts against the events.list endpoint
  • Assess whether sensitive document metadata may have been exposed and notify affected users if warranted

Patch Information

Version 1.5.0 of Outline addresses this vulnerability by implementing proper permission validation for the events.list endpoint. The fix ensures that activity events for documents without collections (Private Drafts, Deleted Documents) are only returned to users with legitimate ownership or access permissions.

For detailed patch information, refer to the GitHub Security Advisory GHSA-69x7-6fcr-mm6g.

Workarounds

  • Restrict access to the events.list API endpoint at the network or reverse proxy level to administrative users only until patching is complete
  • Implement additional authentication requirements or rate limiting on the activity log endpoint
  • Consider temporarily disabling the activity log feature if it is not essential for operations
bash
# Example: Restrict events.list endpoint access via nginx until patch is applied
location /api/events.list {
    # Allow only administrative IP ranges
    allow 10.0.0.0/8;
    deny all;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGetoutline

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.02%

  • 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-200
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS Vulnerability
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