CVE-2025-64711

CVE-2025-64711 is a low-severity cross-site scripting (XSS) vulnerability in privatebin/privatebin (composer), affecting versions >= 1.7.7, < 2.0.3. It is fixed in 2.0.3.

Does this CVE actually affect you?

Kodem shows which CVEs are reachable and running in your applications, so you fix what's exploitable, not just what's listed.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Runtime intelligence, not another scanner.

Summary

PrivateBin vulnerable to malicious filename use for self-XSS / HTML injection locally for users

Dragging a file whose filename contains HTML is reflected verbatim into the page via the drag-and-drop helper, so any user who drops a crafted file on PrivateBin will execute arbitrary JavaScript within their own session (self-XSS). This allows an attacker who can entice a victim to drag or otherwise attach such a file to exfiltrate plaintext, encryption keys, or stored pastes before they are encrypted or sent.

Note 1: as the malicious filename must contain the > character, the victim must not be using Windows for this to work, since this OS simply forbids this character in filenames.

Note 2: most PrivateBin instances use the Content-Security-Policy header to prevent most use-cases of this vulnerability. This report will describe the impact as if this header had been disabled by the PrivateBin instance owner.

Affected versions

PrivateBin versions since 1.7.7 and before 2.0.3.

Conditions

  • Only macIOS or Linux users are affected, due to the way the > character is treated in a file name on Windows.
  • The PrivateBIn instance needs to have file upload enabled.
  • An attacker needs to have access to the local file system or somehow convince the user to create (or download) a malicious file (name).
  • An attacker needs to convince the user to attach that malicious file to PrivateBin.

Real-life impact

As the whole exploit needs to be included in the file name of the attached file and only affects the local session of the user (aka it is neither persistent nor remotely executable) and that user needs to interact and actively attach that file to the paste, the impact is considered to be practically low.

Technical Description

When a file is dropped, readFileData collects all filenames and calls printDragAndDropFileNames:

const fileNames = loadedFiles.map((loadedFile => loadedFile.name));
printDragAndDropFileNames(fileNames);

printDragAndDropFileNames then renders those names:

        function printDragAndDropFileNames(fileNames) {
            $dragAndDropFileNames.html(fileNames.join('<br>'));
        }

This will insecurely render the user-submitted filenames as HTML.

This vulnerability has been introduced in this commit (introduced in 1.7.7).

The previous render method was using .text():

$dragAndDropFileName.text(loadedFile.name);

Reproduction Steps

  1. On a Unix-like system, create a file with an HTML/JS payload in its name, e.g. by running touch '"><img src=x onerror=alert(document.domain)>.txt'.
  2. Deploy or use any PrivateBin instance with attachments enabled (including https://privatebin.net/).
  3. Open the UI in a browser and start a new paste.
  4. Drag the crafted file anywhere on the page
  5. As soon as it is dropped, the filename is inserted into #dragAndDropFileName as HTML and the onerror handler fires (assuming CSP is disabled), showing the alert.

Mitigation

PrivateBin strongly recommends users to upgrade to the latest release. However, here are some workarounds that may help users to mitigate this vulnerability without upgrade:

  • Update the CSP in your configuration file to the latest recommended settings and check that it isn't getting reverted or overwritten by the web server, reverse proxy or CDN, i.e. using PrivateBin's offered check service.
    Note: Users should check the CSP independently, even if they've upgrade to a fixed version.
  • Deploying PrivateBin on a separate domain may limit the scope of the vulnerability to PrivateBin itself and thus, as described in the “Impact” section, effectively prevent any damage by the vulnerability to other resources users are hosting.
  • As explained in the impact assessment, disabling attachments also prevents this issue.

Credits

PrivateBin would like to thank Benoit Esnard, who reported this vulnerability.

In general, PrivateBin would like to thank everyone reporting issues and potential vulnerabilities.

If a user thinks they have found a vulnerability or potential security risk, PrivateBin would kindly ask you to follow our security policy and report it. PrivateBin will then assess the report and will take the necessary actions to address it.

Timeline

  • 2025-11-09 Received report via GitHub Security Advisory
  • 2025-11-10 Discussed and reproduced issue, created a patch
  • 2025-11-11 Further work on patch
  • 2025-11-12 Released patch with PrivateBin 2.0.3

Impact

Any Mac / Linux user who can be tricked into dragging a maliciously named file into the editor is impacted; code runs in the origin of the PrivateBin instance they are using. Attackers can steal plaintext, passphrases, or manipulate the UI before data is encrypted, defeating the zero-knowledge guarantees for that victim session, assuming counter-measures like Content-Security-Policy (CSP) have been disabled.

If CSP is not disabled, similar HTML injection attacks as described in CVE-2025-62796 may be possible - like redirecting to a foreign website, phishing etc.

Untrusted input is rendered as active markup in a victim's browser, which can run script in their session. Typical impact: session or credential theft, and actions taken as the user.

CVE-2025-64711 has a CVSS score of 3.9 (Low). The vector is requires local access, low privileges required, and user interaction required. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (2.0.3); upgrading removes the vulnerable code path.

Affected versions

privatebin/privatebin (>= 1.7.7, < 2.0.3)

Security releases

privatebin/privatebin → 2.0.3 (composer)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

Already deployed Kodem?

See it in your environmentNew to Kodem? Get a demo →

Remediation advice

The issue has been patched in version 2.0.3.

Frequently Asked Questions

  1. What is CVE-2025-64711? CVE-2025-64711 is a low-severity cross-site scripting (XSS) vulnerability in privatebin/privatebin (composer), affecting versions >= 1.7.7, < 2.0.3. It is fixed in 2.0.3. Untrusted input is rendered as active markup in a victim's browser, which can run script in their session.
  2. How severe is CVE-2025-64711? CVE-2025-64711 has a CVSS score of 3.9 (Low). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
  3. Which versions of privatebin/privatebin are affected by CVE-2025-64711? privatebin/privatebin (composer) versions >= 1.7.7, < 2.0.3 is affected.
  4. Is there a fix for CVE-2025-64711? Yes. CVE-2025-64711 is fixed in 2.0.3. Upgrade to this version or later.
  5. Is CVE-2025-64711 exploitable, and should I be worried? Whether CVE-2025-64711 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  6. What actually determines whether CVE-2025-64711 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  7. How do I fix CVE-2025-64711? Upgrade privatebin/privatebin to 2.0.3 or later.

Other vulnerabilities in privatebin/privatebin

Stop the waste.
Protect your environment with Kodem.