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

CVE-2026-33476: B3log Siyuan Path Traversal Vulnerability

CVE-2026-33476 is a path traversal flaw in B3log Siyuan that allows unauthenticated attackers to read arbitrary files via the /appearance/ endpoint. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33476 Overview

CVE-2026-33476 is a directory traversal vulnerability in SiYuan, a personal knowledge management system developed by B3log. Prior to version 3.6.2, the SiYuan kernel exposes an unauthenticated file-serving endpoint under /appearance/*filepath. Due to improper path sanitization, attackers can perform directory traversal and read arbitrary files accessible to the server process. Authentication checks explicitly exclude this endpoint, allowing exploitation without valid credentials.

Critical Impact

Unauthenticated attackers can read sensitive files from the server filesystem, potentially exposing credentials, configuration files, private notes, and other confidential data stored on systems running vulnerable SiYuan instances.

Affected Products

  • B3log SiYuan versions prior to 3.6.2
  • SiYuan personal knowledge management system with exposed network endpoints
  • Self-hosted SiYuan deployments accessible over the network

Discovery Timeline

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

Technical Details for CVE-2026-33476

Vulnerability Analysis

This vulnerability stems from a classic path traversal flaw (CWE-22) in the SiYuan kernel's file-serving functionality. The /appearance/*filepath endpoint is designed to serve appearance-related assets such as themes and icons, but lacks proper input validation on the filepath parameter. When processing requests, the application fails to adequately sanitize user-supplied path components, allowing attackers to escape the intended directory using sequences like ../ (dot-dot-slash).

What makes this vulnerability particularly severe is the explicit exclusion of this endpoint from authentication checks. This design decision, likely intended to allow unauthenticated access to public theme assets, creates an attack surface that requires no credentials to exploit. An attacker with network access to a vulnerable SiYuan instance can craft malicious HTTP requests to traverse the filesystem and retrieve arbitrary files readable by the server process.

Root Cause

The root cause is improper input validation and path sanitization in the file-serving handler for the /appearance/*filepath endpoint. The application does not properly validate or canonicalize the filepath parameter before using it to construct file paths, and the endpoint is explicitly excluded from authentication middleware. This combination allows unauthenticated path traversal attacks.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends crafted HTTP GET requests to the /appearance/ endpoint with path traversal sequences embedded in the URL path. The vulnerable server processes these requests without proper sanitization, returning the contents of files outside the intended appearance directory.

For example, an attacker could request files like /etc/passwd on Linux systems or sensitive configuration files containing database credentials and API keys. The attack surface includes any SiYuan instance exposed to the network, making internet-facing deployments particularly at risk.

The vulnerability mechanism involves manipulating the filepath parameter with directory traversal sequences. For detailed technical information about the vulnerable code paths and the security fix, refer to the GitHub Security Advisory GHSA-hhgj-gg9h-rjp7 and the patch commit.

Detection Methods for CVE-2026-33476

Indicators of Compromise

  • HTTP requests to /appearance/ endpoints containing path traversal sequences such as ../, ..%2f, or ..%252f
  • Unusual access patterns targeting the /appearance/ endpoint from external IP addresses
  • Web server logs showing successful responses for requests with encoded traversal characters
  • File access audit logs indicating reads of sensitive system files (/etc/passwd, /etc/shadow, configuration files) by the SiYuan process

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block path traversal patterns in URL paths
  • Monitor HTTP access logs for requests containing ../ sequences or URL-encoded equivalents targeting the /appearance/ endpoint
  • Deploy intrusion detection system (IDS) signatures for directory traversal attack patterns
  • Use SentinelOne Singularity to detect anomalous file access patterns by the SiYuan application process

Monitoring Recommendations

  • Enable detailed logging for the SiYuan application and web server access logs
  • Monitor for unusual file read operations originating from the SiYuan kernel process
  • Set up alerts for requests to /appearance/ endpoints that return unexpected content types or large response sizes
  • Review network traffic for reconnaissance patterns targeting this endpoint

How to Mitigate CVE-2026-33476

Immediate Actions Required

  • Upgrade SiYuan to version 3.6.2 or later immediately
  • If immediate patching is not possible, restrict network access to SiYuan instances using firewall rules
  • Audit systems for signs of exploitation by reviewing web server access logs for suspicious requests
  • Ensure SiYuan is not directly exposed to the internet without proper access controls

Patch Information

B3log has released version 3.6.2 of SiYuan which addresses this vulnerability. The fix implements proper path sanitization for the /appearance/*filepath endpoint. The security patch is available in commit 009bb598b3beccc972aa5f1ed88b3b224326bf2a.

For detailed patch information, see:

  • GitHub Commit Changes
  • GitHub Security Advisory GHSA-hhgj-gg9h-rjp7

Workarounds

  • Block external access to the /appearance/ endpoint using a reverse proxy or web application firewall
  • Restrict network access to SiYuan to trusted IP addresses only using firewall rules
  • Run SiYuan in a containerized environment with limited filesystem access to reduce impact of exploitation
  • Place SiYuan behind an authentication proxy if it must be network-accessible before patching
bash
# Example nginx configuration to block path traversal attempts
location /appearance/ {
    # Block requests containing path traversal sequences
    if ($request_uri ~* "\.\.") {
        return 403;
    }
    # Restrict to localhost only until patched
    allow 127.0.0.1;
    deny all;
}

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.73%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-hhgj-gg9h-rjp7
  • Related CVEs
  • CVE-2026-33194: 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