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

CVE-2026-30926: SiYuan Privilege Escalation Vulnerability

CVE-2026-30926 is a privilege escalation vulnerability in SiYuan Note allowing read-only publish accounts to modify notebook content. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: March 13, 2026

CVE-2026-30926 Overview

CVE-2026-30926 is a privilege escalation vulnerability discovered in SiYuan, a personal knowledge management system. Prior to version 3.5.10, a critical flaw exists in the publish service that allows low-privilege publish accounts with RoleReader permissions to modify notebook content via the /api/block/appendHeadingChildren API endpoint. The endpoint only requires model.CheckAuth role validation, which accepts RoleReader sessions, but fails to enforce stricter authorization checks such as CheckAdminRole or CheckReadonly. This improper access control enables remote authenticated users with read-only privileges to append new blocks to existing documents, compromising the integrity of stored notes.

Critical Impact

Remote authenticated users with read-only privileges can escalate their permissions to modify notebook content, compromising data integrity in SiYuan Note instances.

Affected Products

  • SiYuan Note versions prior to 3.5.10
  • SiYuan publish service with RoleReader authentication enabled
  • Deployments exposing the /api/block/appendHeadingChildren endpoint

Discovery Timeline

  • 2026-03-10 - CVE-2026-30926 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30926

Vulnerability Analysis

This vulnerability stems from improper access control (CWE-284) in SiYuan's API authorization layer. The /api/block/appendHeadingChildren endpoint is designed to allow users to append content blocks to existing document headings. However, the endpoint's authorization mechanism only validates that a user has authenticated via model.CheckAuth, which accepts sessions from users with RoleReader permissions. The absence of additional authorization checks means that users who should only have read access can perform write operations, effectively escalating their privileges within the application.

The attack is network-accessible and requires only low-privilege authentication, making it relatively easy to exploit for any authenticated user on a vulnerable SiYuan instance. While the vulnerability does not allow arbitrary code execution or provide access to confidential data beyond what the attacker already has, it severely compromises the integrity of stored notes and documents.

Root Cause

The root cause of this vulnerability is the missing authorization enforcement at the API endpoint level. The /api/block/appendHeadingChildren endpoint relies solely on model.CheckAuth for access validation, which is designed to verify authentication status but does not differentiate between user roles. The endpoint should implement additional checks such as CheckAdminRole or CheckReadonly to ensure that only users with appropriate write permissions can modify document content. This oversight allows RoleReader sessions to bypass the intended access control restrictions.

Attack Vector

The attack vector is network-based, requiring an authenticated session with RoleReader privileges. An attacker would:

  1. Obtain valid credentials for a publish account with RoleReader role
  2. Authenticate to the SiYuan instance and obtain a valid session token
  3. Send crafted requests to the /api/block/appendHeadingChildren endpoint with the authenticated session
  4. Append arbitrary content blocks to existing documents, modifying notebook content

The vulnerability allows authenticated attackers with read-only access to modify document content through the API endpoint. The attacker sends authenticated requests to /api/block/appendHeadingChildren with block data to append. Since the endpoint only checks for basic authentication (model.CheckAuth) and not role-based permissions, the request succeeds even for RoleReader accounts. For detailed technical analysis, see the GitHub Security Advisory.

Detection Methods for CVE-2026-30926

Indicators of Compromise

  • Unexpected modifications to notebook documents by users with read-only permissions
  • API access logs showing POST requests to /api/block/appendHeadingChildren from RoleReader sessions
  • Audit trail entries indicating content changes attributed to accounts that should not have write access
  • New or unexpected blocks appearing in documents without corresponding authorized user activity

Detection Strategies

  • Monitor API access logs for requests to /api/block/appendHeadingChildren from accounts with RoleReader role assignments
  • Implement alerting on document modification events that originate from read-only user sessions
  • Review authentication and authorization logs for privilege escalation patterns
  • Deploy application-layer firewalls to inspect and alert on suspicious API activity

Monitoring Recommendations

  • Enable detailed logging for all API endpoints that modify document content
  • Configure SIEM rules to correlate user role assignments with write operation attempts
  • Implement real-time alerting for unauthorized modification attempts
  • Establish baseline behavior patterns for read-only accounts to detect anomalies

How to Mitigate CVE-2026-30926

Immediate Actions Required

  • Upgrade SiYuan Note to version 3.5.10 or later immediately
  • Review recent document modifications for unauthorized changes by RoleReader accounts
  • Audit user accounts and their assigned roles, removing unnecessary publish access
  • Temporarily disable the publish service if immediate patching is not possible

Patch Information

The vulnerability is addressed in SiYuan Note version 3.5.10. The patch implements proper role-based authorization checks on the /api/block/appendHeadingChildren endpoint, ensuring that only users with appropriate write permissions can modify document content. Organizations should upgrade to the patched version as soon as possible. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Restrict network access to the SiYuan API endpoints using firewall rules or network segmentation
  • Disable the publish service entirely if not required for business operations
  • Implement a reverse proxy with additional authorization checks for sensitive API endpoints
  • Limit RoleReader account creation and audit existing publish accounts for necessity
bash
# Example: Restrict access to SiYuan API using iptables
# Allow only trusted IP ranges to access the SiYuan service
iptables -A INPUT -p tcp --dport 6806 -s 10.0.0.0/8 -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
  • TypePrivilege Escalation

  • Vendor/TechSiyuan

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40107: SiYuan Information Disclosure 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