CVE-2026-32767: CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') in siyuan-note siyuan
SiYuan is a personal knowledge management system. Versions 3.6.0 and below contain an authorization bypass vulnerability in the /api/search/fullTextSearchBlock endpoint. When the method parameter is set to 2, the endpoint passes user-supplied input directly as a raw SQL statement to the underlying SQLite database without any authorization or read-only checks. This allows any authenticated user — including those with the Reader role — to execute arbitrary SQL statements (SELECT, DELETE, UPDATE, DROP TABLE, etc.) against the application's database. This is inconsistent with the application's own security model: the dedicated SQL endpoint (/api/query/sql) correctly requires both CheckAdminRole and CheckReadonly middleware, but the search endpoint bypasses these controls entirely. This issue has been fixed in version 3.6.1.
AI Analysis
Technical Summary
CVE-2026-32767 is a critical SQL injection vulnerability affecting SiYuan, a personal knowledge management system, in versions prior to 3.6.1. The vulnerability resides in the /api/search/fullTextSearchBlock endpoint, specifically when the method parameter is set to 2. In this scenario, the endpoint directly passes user-supplied input as a raw SQL statement to the underlying SQLite database without performing any authorization or read-only checks. This behavior contrasts with the dedicated SQL query endpoint (/api/query/sql), which properly enforces CheckAdminRole and CheckReadonly middleware to restrict access. Due to this oversight, any authenticated user, including those assigned the Reader role with limited privileges, can execute arbitrary SQL commands such as SELECT, DELETE, UPDATE, or DROP TABLE. This effectively allows attackers to bypass the application's security model, leading to unauthorized data access, data manipulation, or destruction. The vulnerability is classified under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command) and CWE-863 (Incorrect Authorization). The flaw was publicly disclosed on March 20, 2026, with a CVSS v3.1 base score of 9.8, reflecting its critical impact on confidentiality, integrity, and availability without requiring user interaction or elevated privileges beyond authentication. Although no known exploits have been reported in the wild, the severity and ease of exploitation make this a high-risk vulnerability. The issue was resolved in SiYuan version 3.6.1 by enforcing proper authorization and read-only checks on the vulnerable endpoint.
Potential Impact
The impact of CVE-2026-32767 is severe for organizations using affected versions of SiYuan. Attackers with any authenticated access, including low-privileged Reader roles, can execute arbitrary SQL commands on the application's SQLite database. This can lead to unauthorized disclosure of sensitive information, data tampering, deletion of critical data, or complete destruction of the database. Such actions can compromise the confidentiality, integrity, and availability of organizational knowledge assets managed within SiYuan. The vulnerability undermines the trust model of the application by allowing privilege escalation through bypassing intended access controls. Organizations relying on SiYuan for knowledge management may face operational disruption, data loss, or exposure of proprietary or personal information. Given the critical CVSS score and the lack of required elevated privileges, exploitation could be straightforward, increasing the risk of widespread impact if attackers gain authenticated access. The absence of known exploits in the wild does not diminish the urgency of remediation due to the vulnerability's high severity and potential for damage.
Mitigation Recommendations
To mitigate CVE-2026-32767, organizations should immediately upgrade SiYuan to version 3.6.1 or later, where the vulnerability has been fixed by enforcing proper authorization and read-only checks on the /api/search/fullTextSearchBlock endpoint. Until upgrading is possible, organizations should restrict access to the application to trusted users only and consider disabling or restricting the vulnerable endpoint if feasible. Implement network-level access controls such as IP whitelisting or VPN requirements to limit exposure. Conduct thorough audits of user roles and permissions to ensure that only necessary users have authenticated access, minimizing the attack surface. Monitor application logs for unusual SQL queries or unexpected database activity that could indicate exploitation attempts. Additionally, consider deploying Web Application Firewalls (WAFs) with custom rules to detect and block suspicious SQL injection patterns targeting the vulnerable endpoint. Regularly review and update security policies to enforce least privilege principles and ensure timely patch management for all software components.
Affected Countries
United States, China, Germany, United Kingdom, Japan, South Korea, France, Canada, Australia, Netherlands
CVE-2026-32767: CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') in siyuan-note siyuan
Description
SiYuan is a personal knowledge management system. Versions 3.6.0 and below contain an authorization bypass vulnerability in the /api/search/fullTextSearchBlock endpoint. When the method parameter is set to 2, the endpoint passes user-supplied input directly as a raw SQL statement to the underlying SQLite database without any authorization or read-only checks. This allows any authenticated user — including those with the Reader role — to execute arbitrary SQL statements (SELECT, DELETE, UPDATE, DROP TABLE, etc.) against the application's database. This is inconsistent with the application's own security model: the dedicated SQL endpoint (/api/query/sql) correctly requires both CheckAdminRole and CheckReadonly middleware, but the search endpoint bypasses these controls entirely. This issue has been fixed in version 3.6.1.
AI-Powered Analysis
Technical Analysis
CVE-2026-32767 is a critical SQL injection vulnerability affecting SiYuan, a personal knowledge management system, in versions prior to 3.6.1. The vulnerability resides in the /api/search/fullTextSearchBlock endpoint, specifically when the method parameter is set to 2. In this scenario, the endpoint directly passes user-supplied input as a raw SQL statement to the underlying SQLite database without performing any authorization or read-only checks. This behavior contrasts with the dedicated SQL query endpoint (/api/query/sql), which properly enforces CheckAdminRole and CheckReadonly middleware to restrict access. Due to this oversight, any authenticated user, including those assigned the Reader role with limited privileges, can execute arbitrary SQL commands such as SELECT, DELETE, UPDATE, or DROP TABLE. This effectively allows attackers to bypass the application's security model, leading to unauthorized data access, data manipulation, or destruction. The vulnerability is classified under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command) and CWE-863 (Incorrect Authorization). The flaw was publicly disclosed on March 20, 2026, with a CVSS v3.1 base score of 9.8, reflecting its critical impact on confidentiality, integrity, and availability without requiring user interaction or elevated privileges beyond authentication. Although no known exploits have been reported in the wild, the severity and ease of exploitation make this a high-risk vulnerability. The issue was resolved in SiYuan version 3.6.1 by enforcing proper authorization and read-only checks on the vulnerable endpoint.
Potential Impact
The impact of CVE-2026-32767 is severe for organizations using affected versions of SiYuan. Attackers with any authenticated access, including low-privileged Reader roles, can execute arbitrary SQL commands on the application's SQLite database. This can lead to unauthorized disclosure of sensitive information, data tampering, deletion of critical data, or complete destruction of the database. Such actions can compromise the confidentiality, integrity, and availability of organizational knowledge assets managed within SiYuan. The vulnerability undermines the trust model of the application by allowing privilege escalation through bypassing intended access controls. Organizations relying on SiYuan for knowledge management may face operational disruption, data loss, or exposure of proprietary or personal information. Given the critical CVSS score and the lack of required elevated privileges, exploitation could be straightforward, increasing the risk of widespread impact if attackers gain authenticated access. The absence of known exploits in the wild does not diminish the urgency of remediation due to the vulnerability's high severity and potential for damage.
Mitigation Recommendations
To mitigate CVE-2026-32767, organizations should immediately upgrade SiYuan to version 3.6.1 or later, where the vulnerability has been fixed by enforcing proper authorization and read-only checks on the /api/search/fullTextSearchBlock endpoint. Until upgrading is possible, organizations should restrict access to the application to trusted users only and consider disabling or restricting the vulnerable endpoint if feasible. Implement network-level access controls such as IP whitelisting or VPN requirements to limit exposure. Conduct thorough audits of user roles and permissions to ensure that only necessary users have authenticated access, minimizing the attack surface. Monitor application logs for unusual SQL queries or unexpected database activity that could indicate exploitation attempts. Additionally, consider deploying Web Application Firewalls (WAFs) with custom rules to detect and block suspicious SQL injection patterns targeting the vulnerable endpoint. Regularly review and update security policies to enforce least privilege principles and ensure timely patch management for all software components.
Technical Details
- Data Version
- 5.2
- Assigner Short Name
- GitHub_M
- Date Reserved
- 2026-03-13T18:53:03.533Z
- Cvss Version
- 3.1
- State
- PUBLISHED
Threat ID: 69bc9abfe32a4fbe5f1030ee
Added to database: 3/20/2026, 12:54:23 AM
Last enriched: 3/20/2026, 1:09:09 AM
Last updated: 3/20/2026, 2:05:40 AM
Views: 4
Community Reviews
0 reviewsCrowdsource mitigation strategies, share intel context, and vote on the most helpful responses. Sign in to add your voice and help keep defenders ahead.
Want to contribute mitigation steps or threat intel context? Sign in or create an account to join the community discussion.
Actions
Updates to AI analysis require Pro Console access. Upgrade inside Console → Billing.
Need more coverage?
Upgrade to Pro Console in Console -> Billing for AI refresh and higher limits.
For incident response and remediation, OffSeq services can help resolve threats faster.
Latest Threats
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.