Arbitrary File Deletion Vulnerability in Siyuan Note

Published Date: January 5, 2025

Package Affected Versions Patched Versions Severity
📦 github.com/siyuan-note/siyuan/kernel (Go) < 0.0.0-20250103014808-d9887aeec1b2 High

Description

Summary


Siyuan Note contains an arbitrary file deletion vulnerability in the /api/history/getDocHistoryContent endpoint. An attacker can exploit this flaw by crafting a malicious request, which could delete arbitrary files on the server.




Technical Details


The vulnerability lies in how the historyPath parameter is processed in the following function chain:

  1. api/history.go:133 – Processes historyPath from the request payload.

  2. model/history.go:150 – Passes historyPath to the GetDocHistoryContent function.


Here’s the critical section:

if historyPath exists and does not satisfy the filesys.ParseJSONWithoutFix, then it will be deleted by os.RemoveAll


If ParseJSONWithoutFix fails, the file at historyPath will be deleted via os.RemoveAll.

Proof of Concept (PoC)


An attacker can exploit this with the following curl command:

curl "http://127.0.0.1:6806/api/history/getDocHistoryContent" \
-X POST -H "Content-Type: application/json" \
-d '{"historyPath":"<abs_filepath_of_a_file>"}'


Replace <abs_filepath_of_a_file> with the absolute path of the target file.




Impact


Successful exploitation allows an attacker to delete any file on the server, potentially leading to service disruption or further exploitation depending on the deleted files.

Patches & Workarounds

Mitigation and Fix


Currently, no official patch is available. However, here are some immediate steps to reduce risk:

  1. Restrict Access: Limit access to the vulnerable API endpoint to trusted IP addresses.

  2. Validate Input: Ensure historyPath strictly validates file paths before processing.

  3. Temporary Disablement: If possible, disable the /api/history/getDocHistoryContent endpoint until a patch is released.






Recommended Code Fix Example:
Add strict validation to prevent arbitrary file paths:

if !isValidHistoryPath(historyPath) {
return errors.New("invalid history path")
}


Implement isValidHistoryPath to ensure historyPath adheres to safe patterns.

References

https://nvd.nist.gov/vuln/detail/CVE-2025-21609
Share this:
  • Top 10 Viruses and Malware Wreaking Havoc in January 2025

    Learn how to identify and defend against the latest cybersecurity threats like Banshee, Clop Ransomware, and AI-powered attacks. Stay one step ahead of hackers with this detailed guide.

  • Should You Invest in DIY AI Assistants?

    With AI technologies advancing rapidly, there’s growing interest in building personal assistants at home. Today, big names like Alexa and Google Home dominate the market, but their capabilities remain limited by their current integrations. Meanwhile, ChatGPT and Google’s Gemini have revolutionized conversational AI, although they lack standalone devices or wake-word functionality. These limitations won’t last…

  • How Spilled Coffee Saved a Company

    Small businesses face countless threats—phishing attacks, ransomware, budget constraints, and, occasionally, over-caffeinated interns. This is the story of Taxify Associates, a mid-sized accounting firm that narrowly avoided financial ruin thanks to a spilled cup of coffee, a frayed carpet, and one overworked IT manager.

  • How Cybercriminals Bypass Apple iMessage Security Protections

    Cybercriminals have found a simple yet effective way to bypass Apple’s phishing protections built into iMessage. This exploit enables them to trick users into activating dangerous phishing links. As mobile devices dominate how people pay bills, shop, and communicate, phishing attacks (a form of fraudulent message-based scamming) are becoming more popular among bad actors.

  • Windows Security vs Norton Small Business: Best Antivirus for SMBs in 2025 Compared

    When it comes to protecting your small or medium-sized business (SMB), antivirus software is a must. In 2025, two popular choices for SMBs are Windows Security and Norton Small Business. Both aim to shield your business from threats like malware, phishing, and ransomware, but they take very different approaches.

  • Build a Local AI Search Engine with Ollama

    In today’s world, companies generate mountains of documents daily. Finding a single file among shared network drives, cloud storage, and local folders can feel like searching for a needle in a haystack. Fortunately, with tools like Ollama—a local AI model—you can build a powerful, privacy-friendly search engine tailored for your company’s needs.