CVE-2026-44566 - Open WebUI Vulnerable to Arbitrary File Upload and Path Traversal

📡 GitHub-Advisory · 2026-05-08

CVE-2026-44566 - Open WebUI Vulnerable to Arbitrary File Upload and Path Traversal

CVE-2026-44566

GHSA-9pgh-j74g-qj6m HIGH pip/open-webui

CVE: CVE-2026-44566

**CONFIDENTIAL**

KL-CAN-2024-002

Vulnerability Details

#FieldValue 1**Discoverer**Jaggar Henry & Sean Segreti of KoreLogic, Inc. 2**Date Submitted**2024.03.12 3**Title**Open WebUI Arbitrary File Upload + Path Traversal 5**Affected Vendor**Open WebUI 6**Affected Product(s)**Open WebUI (Formerly Ollama WebUI) 7**Affected Version(s)**0.1.105 8**Platform/OS**Debian GNU/Linux 12 (bookworm) 9**Vector**HTTP web interface 10**CWE**CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal'), CWE-434: Unrestricted Upload of File with Dangerous Type


4. High-level Summary

Attacker controlled files can be uploaded to arbitrary locations on the web server's filesystem by abusing a path traversal vulnerability.


11. Technical Analysis

When attaching files to a prompt by clicking the plus sign (+) on the left of the message input box when using the Open WebUI HTTP interface, the file is uploaded to a static upload directory.

The name of the file is derived from the original HTTP upload request and is not validated or sanitized. This allows for users to upload files with names containing dot-segments in the file path and traverse out of the intended uploads directory. Effectively, users can upload files anywhere on the filesystem the user running the web server has permission.

This can be visualized by examining the python code for the /rag/api/v1/doc API route:

@app.post("/doc")
def store_doc(
    collection_name: Optional[str] = Form(None),
    file: UploadFile = File(...),
    user=Depends(get_current_user),
):
    # "https://www.gutenberg.org/files/1727/1727-h/1727-h.htm"

    print(file.content_type)
    try:
        filename = file.filename
        file_path = f"{UPLOAD_DIR}/{filename}"
        contents = file.file.read()
        with open(file_path, "wb") as f:
            f.write(conte

📌 来源: GitHub-Advisory | 🆔 CVE-2026-44566 | 📅 2026-05-08

[!] CONTACT_CHANNELS

如需商务合作、技术咨询或漏洞反馈,请通过以下离岸节点联系作者。

> PING_AUTHOR (@A1RedTeam)