CVE-2025-27145: copyparty renders unsanitized filenames as HTML when user uploads empty files
Summary
A DOM-Based XSS was discovered in copyparty, a portable fileserver. The vulnerability is considered low-risk.
Details
By handing someone a maliciously-named file, and then tricking them into dragging the file into copyparty's Web-UI, an attacker could execute arbitrary javascript with the same privileges as that user. For example, this could give unintended read-access to files owned by that user. The bug is triggered by the drag-drop action itself; it is not necessary to actually initiate the upload. The file must be empty (zero bytes).
Note: As a general-purpose webserver, it is intentionally possible to upload HTML-files with arbitrary javascript in <script> tags, which will execute when the file is opened. The difference is that this vulnerability would trigger execution of javascript during the act of uploading, and not when the uploaded file was opened.
Proof of Concept (POC)
1. Create an empty file named <img src=x onerror="alert(1)"> 2. Drag-and-drop the file into the browser to initiate an upload 3. The alert(1) is executed
Other sources
copyparty, a portable file server, has a DOM-based cross-site scripting vulnerability in versions prior to 1.16.15. The vulnerability is considered low-risk. By handing someone a maliciously-named file, and then tricking them into dragging the file into copyparty's Web-UI, an attacker could execute arbitrary javascript with the same privileges as that user. For example, this could give unintended read-access to files owned by that user. The bug is triggered by the drag-drop action itself; it is not necessary to actually initiate the upload. The file must be empty (zero bytes). Note that, as a general-purpose webserver, it is intentionally possible to upload HTML-files with arbitrary javascript in <script> tags, which will execute when the file is opened. The difference is that this vulnerability would trigger execution of javascript during the act of uploading, and not when the uploaded file was opened. Version 1.16.15 contains a fix.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/copypartyto a version that resolves this vulnerability.Fixed in 1.16.15 - Upgrade
Upgrade
copypartyto a version that resolves this vulnerability.Fixed in 1.16.15
Event History
Frequently Asked Questions
What is the severity of CVE-2025-27145?
The severity of CVE-2025-27145 is considered low-risk.
How do I fix CVE-2025-27145?
To fix CVE-2025-27145, upgrade to copyparty version 1.16.15 or later.
What type of vulnerability is CVE-2025-27145?
CVE-2025-27145 is a DOM-Based Cross-Site Scripting (XSS) vulnerability.
What software is affected by CVE-2025-27145?
CVE-2025-27145 affects copyparty versions prior to 1.16.15.
How can attackers exploit CVE-2025-27145?
Attackers can exploit CVE-2025-27145 by providing a maliciously-named file to trick users.