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

CVE-2026-33203: B3log Siyuan DOS Vulnerability

CVE-2026-33203 is a denial of service vulnerability in B3log Siyuan caused by unauthenticated WebSocket connections that can crash the kernel. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-33203 Overview

SiYuan is a personal knowledge management system that allows users to organize notes, documents, and knowledge bases locally. A critical vulnerability exists in versions prior to 3.6.2 where the SiYuan kernel WebSocket server accepts unauthenticated connections when a specific "auth keepalive" query parameter is present. After connection establishment, incoming messages are parsed using unchecked type assertions on attacker-controlled JSON data. A remote attacker can exploit this flaw by sending malformed messages that trigger a runtime panic, potentially crashing the kernel process and causing denial of service.

Critical Impact

Remote attackers can crash the SiYuan kernel process without authentication, causing complete denial of service and potential data loss for users actively working in the application.

Affected Products

  • B3log SiYuan versions prior to 3.6.2
  • SiYuan kernel WebSocket server component
  • All platforms running vulnerable SiYuan versions

Discovery Timeline

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

Technical Details for CVE-2026-33203

Vulnerability Analysis

The vulnerability resides in the SiYuan kernel's WebSocket server implementation. The core issue stems from improper handling of WebSocket connections and message parsing. When a client connects to the WebSocket server with a specially crafted "auth keepalive" query parameter, the server bypasses normal authentication checks and accepts the connection as valid.

Once connected, the server processes incoming JSON messages using unchecked type assertions. In Go (the language SiYuan is written in), type assertions without the "comma ok" idiom will cause a runtime panic if the assertion fails. An attacker can exploit this behavior by sending JSON payloads that do not conform to the expected type structure, causing the application to panic and terminate.

This represents a significant security concern for users who may expose their SiYuan instance on a network, as any unauthenticated remote attacker can repeatedly crash the application.

Root Cause

The root cause is twofold: first, an authentication bypass exists when specific query parameters are present in WebSocket connection requests. Second, the message parsing logic uses unsafe type assertions on attacker-controlled data without proper validation or error handling. This combination allows unauthenticated attackers to trigger runtime panics through crafted malicious payloads. The vulnerability is classified under CWE-248 (Uncaught Exception), indicating that the application fails to properly handle exceptional conditions in user input.

Attack Vector

The attack vector is network-based and requires no user interaction or authentication. An attacker can establish a WebSocket connection to a vulnerable SiYuan instance by including the "auth keepalive" query parameter. Once connected, the attacker sends malformed JSON messages designed to fail type assertions during parsing. When the unchecked type assertion encounters unexpected data types, it triggers a runtime panic that crashes the entire kernel process.

The attack is particularly dangerous because it can be executed remotely, requires no privileges, and results in immediate denial of service. Repeated exploitation can prevent users from accessing their knowledge base entirely.

Detection Methods for CVE-2026-33203

Indicators of Compromise

  • Unexpected WebSocket connections to the SiYuan kernel server with "auth keepalive" query parameters
  • Repeated SiYuan kernel process crashes or restarts
  • Log entries showing runtime panic exceptions related to type assertion failures
  • Unusual network traffic patterns targeting the SiYuan WebSocket endpoint

Detection Strategies

  • Monitor WebSocket connection logs for connections containing suspicious query parameters
  • Implement network-level monitoring for repeated connection attempts to SiYuan services
  • Set up process monitoring to detect unexpected kernel crashes and automatic restarts
  • Review application logs for panic stack traces indicating type assertion failures

Monitoring Recommendations

  • Configure alerting for SiYuan process termination events
  • Implement network traffic analysis to identify potential exploitation attempts
  • Monitor for high-frequency WebSocket connection patterns from single IP addresses
  • Enable verbose logging in SiYuan to capture detailed connection and message information

How to Mitigate CVE-2026-33203

Immediate Actions Required

  • Upgrade to SiYuan version 3.6.2 or later immediately
  • Restrict network access to SiYuan instances using firewall rules
  • If upgrade is not immediately possible, consider running SiYuan in a local-only configuration
  • Review logs for any signs of exploitation attempts

Patch Information

Version 3.6.2 of SiYuan addresses this vulnerability by implementing proper authentication checks for WebSocket connections and adding safe type assertion handling with error recovery. Users should update to the latest version as soon as possible. The security advisory is available at the GitHub Security Advisory page.

Workarounds

  • Restrict SiYuan to localhost-only access using firewall rules or binding to 127.0.0.1
  • Place SiYuan behind a reverse proxy with authentication requirements
  • Use network segmentation to limit exposure of the SiYuan service
  • Monitor and rate-limit incoming WebSocket connections
bash
# Firewall configuration example to restrict SiYuan access
# Allow only localhost connections to SiYuan (default port 6806)
iptables -A INPUT -p tcp --dport 6806 -s 127.0.0.1 -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
  • TypeDOS

  • Vendor/TechB3log Siyuan

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-248
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40922: B3log Siyuan RCE Vulnerability

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

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

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