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
    • 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-33669

CVE-2026-33669: SiYuan Information Disclosure Vulnerability

CVE-2026-33669 is an information disclosure flaw in SiYuan knowledge management system that exposes document content through API endpoints. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 26, 2026

CVE-2026-33669 Overview

SiYuan is a personal knowledge management system that allows users to organize notes, documents, and knowledge bases. Prior to version 3.6.2, a critical information disclosure vulnerability exists where document IDs can be retrieved via the /api/file/readDir interface, which subsequently allows attackers to use the /api/block/getChildBlocks interface to view the content of all documents stored in the system. This vulnerability enables unauthorized access to sensitive user data without requiring authentication.

Critical Impact

Unauthenticated attackers can enumerate and read all document contents in SiYuan installations, potentially exposing sensitive personal knowledge bases, notes, and confidential information stored by users.

Affected Products

  • SiYuan versions prior to 3.6.2

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33669 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33669

Vulnerability Analysis

This vulnerability represents an information disclosure flaw stemming from insufficient access controls on critical API endpoints. The SiYuan application exposes two API interfaces that, when combined, allow complete enumeration and retrieval of user documents without proper authorization checks.

The first API endpoint, /api/file/readDir, returns directory listings that include document identifiers. These document IDs are internal references used by SiYuan to organize and retrieve content. Without proper access controls, any user who can reach the API can retrieve these identifiers.

The second endpoint, /api/block/getChildBlocks, accepts document IDs as parameters and returns the full content of the specified documents. Because neither endpoint implements adequate authentication or authorization verification, an attacker can chain these two calls to systematically extract all document contents from a SiYuan installation.

Root Cause

The root cause is a broken access control design (CWE-125: Out-of-bounds Read is listed, though the vulnerability behavior more closely aligns with improper access control). The API endpoints fail to verify that the requesting user has appropriate permissions to access the requested resources. This architectural flaw allows unauthenticated requests to retrieve sensitive document data that should only be accessible to authenticated and authorized users.

Attack Vector

The attack is network-based and requires no privileges, authentication, or user interaction. An attacker can exploit this vulnerability by:

  1. Sending a request to /api/file/readDir to enumerate all document identifiers stored in the SiYuan instance
  2. Iterating through the returned document IDs and calling /api/block/getChildBlocks for each identifier
  3. Collecting and exfiltrating all document contents returned by the API

This attack chain allows complete extraction of a user's personal knowledge base, which may contain sensitive personal notes, passwords, confidential business information, or other private data.

Detection Methods for CVE-2026-33669

Indicators of Compromise

  • Unusual or excessive requests to /api/file/readDir endpoint from unknown IP addresses
  • High volume of sequential calls to /api/block/getChildBlocks with incrementing or enumerated document IDs
  • Access logs showing API requests from unauthenticated sessions or external networks
  • Network traffic analysis revealing bulk data extraction patterns from the SiYuan application

Detection Strategies

  • Monitor web server access logs for repeated access patterns to the vulnerable API endpoints
  • Implement rate limiting alerts for API calls exceeding normal usage thresholds
  • Deploy web application firewall (WAF) rules to detect and block enumeration attempts on SiYuan APIs
  • Use network traffic analysis to identify large data transfers from SiYuan instances to external addresses

Monitoring Recommendations

  • Enable detailed logging for all API endpoints, particularly /api/file/readDir and /api/block/getChildBlocks
  • Configure alerting for unauthenticated API access attempts
  • Review access logs regularly for signs of document enumeration or mass content retrieval
  • Monitor for connections to SiYuan from unexpected network ranges or geographic locations

How to Mitigate CVE-2026-33669

Immediate Actions Required

  • Upgrade SiYuan to version 3.6.2 or later immediately
  • Restrict network access to SiYuan instances to trusted IP ranges or networks only
  • Review access logs to determine if the vulnerability may have been exploited
  • Consider rotating any sensitive credentials or information that may have been stored in SiYuan documents

Patch Information

The vulnerability has been patched in SiYuan version 3.6.2. Users should upgrade to this version or later to remediate the vulnerability. For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • Place SiYuan behind a reverse proxy with authentication requirements
  • Implement network-level access controls to restrict access to trusted users only
  • Use firewall rules to block external access to SiYuan API endpoints until patching is possible
  • If possible, take SiYuan offline or disconnect it from the network until the update can be applied
bash
# Example: Restrict access to SiYuan using iptables (Linux)
# Allow only localhost and trusted network to access SiYuan port
iptables -A INPUT -p tcp --dport 6806 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 6806 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 6806 -j DROP

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechSiyuan

  • SeverityCRITICAL

  • CVSS Score9.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40107: SiYuan Information Disclosure Vulnerability

  • CVE-2026-32747: SiYuan Information Disclosure Vulnerability

  • CVE-2026-39846: SiYuan Electron Desktop Client RCE Flaw

  • CVE-2026-34453: SiYuan Auth Bypass 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