CVE-2026-69085: SiYuan before v3.7.3 SQL Injection via searchDocs
SiYuan before v3.7.3 contains a SQL injection vulnerability in the /api/filetree/searchDocs endpoint, where the caller-supplied keyword parameter is concatenated directly into SQL statements with no escaping or parameter binding. The endpoint is reachable by a publish RoleReader token, or unauthenticated when publish mode is enabled with Publish.Auth.Enable set to false. Because the statement executes on a read-write SQLite handle via a driver that supports stacked (semicolon-separated) statements, an attacker can read and modify database content across all cleartext (non-encrypted) notebooks on the instance.
Security readout for executives and security teams
Plain-English summary
SiYuan versions before 3.7.3 can allow a remote attacker to access or alter information in cleartext notebooks through a vulnerable document-search function. Exposure may require a publish RoleReader token, but no authentication is needed when publish mode disables authentication. Encrypted notebooks are not identified as affected.
Executive priority
Prioritize immediate remediation for internet-accessible or unauthenticated publish deployments. The vulnerability can expose and alter business knowledge stored in cleartext notebooks, although the supplied evidence does not indicate availability impact or confirmed attacks. Restrict access immediately if upgrading cannot occur promptly.
Technical view
The /api/filetree/searchDocs endpoint inserts the keyword parameter directly into SQL without escaping or parameter binding. Its SQLite driver accepts stacked statements, and execution uses a read-write database handle. This creates network-reachable SQL injection capable of reading and modifying database content across cleartext notebooks.
Likely exposure
Instances running SiYuan before 3.7.3 are exposed when the endpoint is reachable using a publish RoleReader token. Risk is greater when publish mode is enabled and Publish.Auth.Enable is false, because the endpoint becomes unauthenticated. The supplied sources do not establish whether default installations expose this configuration.
Exploitation context
The CVSS 3.1 score is 10.0, reflecting remote, low-complexity exploitation without user interaction and potentially without privileges. The source bundle marks this CVE as absent from KEV and provides no evidence of active exploitation. Treat it as highly exploitable based on design, not confirmed exploitation in the wild.
Researcher notes
CWE-89 applies. The risk extends beyond data disclosure because the vulnerable query runs through a stacked-statement-capable driver on a read-write SQLite handle. Scope is described as all cleartext notebooks on the instance. Validate configuration and version safely; the supplied evidence does not describe compromise indicators or confirm exploitation activity.
Mitigation direction
Upgrade SiYuan to version 3.7.3 or later.
Until upgraded, disable unauthenticated publish mode and require publish authentication.
Restrict network access to the affected endpoint and trusted users.
Review the vendor advisory for any additional release-specific instructions.
Validation and detection
Inventory SiYuan instances and confirm their installed versions.
Identify instances with publish mode enabled and Publish.Auth.Enable set to false.
Confirm access to searchDocs requires the intended RoleReader token after mitigation.
Review application and database logs for unusual searchDocs activity or unexplained notebook changes.
Verify cleartext notebook integrity using trusted backups or known-good records.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · medium confidence lookup
CWE-89: Database access and collection lookup
Injection into data stores can inform collection, data access, and exfiltration detection reviews. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
The CVE wording references authentication or credential exposure, so valid-account and credential-access review may help. This is a Glexia inferred lookup path, not an official MITRE, ATT&CK, or CVE Program mapping.
The CVE wording references database injection or access, so collection and exfiltration review may help. This is a Glexia inferred lookup path, not an official MITRE, ATT&CK, or CVE Program mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
2CVSS vectors
3Timeline events
1ADP providers
3Source links
SSVC decision data
CISA-ADPCISA Coordinator
Timestamp
Version
2.0.3
Exploitation: pocAutomatable: yesTechnical Impact: total
CVSS vector scores
2 official scores
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-89 · source CWE mapping
Improper Neutralization of Special Elements used in an SQL Command
Improper Neutralization of Special Elements used in an SQL Command represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.