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

CVE-2026-33194: B3log Siyuan Path Traversal Vulnerability

CVE-2026-33194 is a path traversal flaw in B3log Siyuan that allows attackers to access sensitive files outside the workspace. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-33194 Overview

CVE-2026-33194 is a path traversal vulnerability affecting SiYuan, a personal knowledge management system developed by B3log. The vulnerability exists in the IsSensitivePath() function located in kernel/util/path.go, which implements an incomplete denylist approach for restricting access to sensitive file system directories. Despite recent security improvements (GHSA-h5vh-m7fg-w5h6, commit 9914fd1), the denylist remains incomplete, allowing attackers to access files outside the intended workspace.

Critical Impact

Authenticated attackers with high privileges can read sensitive files from unprotected Linux directories including /opt, /usr, /home, /mnt, and /media, potentially exposing application data, user configurations, and mounted volumes across system boundaries.

Affected Products

  • B3log SiYuan versions prior to 3.6.2

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-33194 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-33194

Vulnerability Analysis

This path traversal vulnerability (CWE-22) stems from an incomplete implementation of security controls in SiYuan's file access validation mechanism. The IsSensitivePath() function in kernel/util/path.go is designed to prevent users from accessing files outside their designated workspace. However, the function employs a denylist approach that fails to block several security-critical Linux directories.

The vulnerability affects two API endpoints that rely on IsSensitivePath() as their primary defense mechanism: globalCopyFiles and importStdMd. When these endpoints receive requests targeting paths in unblocked directories, the incomplete validation allows the operation to proceed, enabling unauthorized file access.

Root Cause

The root cause of this vulnerability is the use of an incomplete denylist in the IsSensitivePath() function. While the function was recently updated in commit 9914fd1 to address a prior security issue (GHSA-h5vh-m7fg-w5h6), the expanded denylist still omits critical directories. The following paths remain unprotected:

  • /opt - Contains third-party application data and configurations
  • /usr - Contains local configurations and binaries
  • /home - Contains home directories of other system users
  • /mnt and /media - Contain mounted external volumes and storage devices

This architectural flaw means that any authenticated user with sufficient privileges can leverage the globalCopyFiles or importStdMd endpoints to read files from these unprotected directories.

Attack Vector

The attack is network-based and requires authenticated access with high privileges. An attacker must first obtain valid credentials with elevated permissions within the SiYuan application. Once authenticated, the attacker can craft requests to the globalCopyFiles or importStdMd endpoints, specifying file paths within the unprotected directories.

Since the IsSensitivePath() function does not block these paths, the request bypasses the intended security controls, allowing the attacker to copy or import files from outside the designated workspace. This could expose sensitive data including other users' files in /home, application secrets in /opt, or data from mounted external storage in /mnt or /media.

The vulnerability has a changed scope, meaning successful exploitation can impact resources beyond the vulnerable component's security authority, potentially affecting the confidentiality of the entire host system.

Detection Methods for CVE-2026-33194

Indicators of Compromise

  • Unexpected file access or copy operations targeting /opt, /usr, /home, /mnt, or /media directories through SiYuan
  • Anomalous API requests to globalCopyFiles or importStdMd endpoints containing path traversal patterns
  • Access logs showing authenticated users requesting files outside their normal workspace scope

Detection Strategies

  • Monitor SiYuan application logs for file operations targeting system directories outside the user workspace
  • Implement network traffic analysis to detect requests to vulnerable endpoints with suspicious path parameters
  • Enable file integrity monitoring on sensitive directories to detect unauthorized access attempts
  • Review audit logs for high-privilege user activity involving file import or copy operations

Monitoring Recommendations

  • Configure alerting for any globalCopyFiles or importStdMd API calls containing absolute paths to system directories
  • Implement behavioral analytics to identify users accessing files outside their typical workspace patterns
  • Deploy endpoint detection and response (EDR) solutions to monitor file system access patterns on systems running SiYuan

How to Mitigate CVE-2026-33194

Immediate Actions Required

  • Upgrade B3log SiYuan to version 3.6.2 or later immediately
  • Audit access logs for any suspicious file access attempts targeting system directories
  • Review user privileges and enforce least-privilege principles for SiYuan accounts
  • Consider implementing network segmentation to limit SiYuan's access to sensitive file system areas

Patch Information

B3log has released version 3.6.2 of SiYuan which contains an updated fix for this vulnerability. Organizations running affected versions should upgrade immediately. For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-vm69-h85x-8p85.

Workarounds

  • Restrict network access to the SiYuan application to trusted users and networks only
  • Implement additional access controls at the operating system level to prevent SiYuan from reading sensitive directories
  • Run SiYuan in a containerized environment with limited file system access
  • Use a web application firewall (WAF) to filter requests containing path traversal patterns targeting the vulnerable endpoints

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechB3log Siyuan

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33476: B3log Siyuan Path Traversal Vulnerability

  • CVE-2026-32938: B3log Siyuan Path Traversal Vulnerability

  • CVE-2026-40922: B3log Siyuan RCE Vulnerability

  • CVE-2026-33203: B3log Siyuan DOS 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