Description
Etherpad is a real-time collaborative editor. From 2.6.0 until 3.1.0, Etherpad's src/node/hooks/express/tokenTransfer.ts uses POST /tokenTransfer to store an author token for transfer between browsers and exposes it through GET /tokenTransfer/{uuid}. Although the record includes createdAt, the transfer has no expiration check, is not removed after successful redemption, and is returned by res.send(tokenData), including the raw author token. An unauthenticated attacker who obtains a transfer UUID can repeatedly redeem it, receive fresh author cookies, read the cleartext token, and impersonate the originating author for pad read and write operations. This issue is fixed in version 3.1.0.
Published: 2026-08-19
Score: 6.8 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability allows an unauthenticated attacker to replay a previously captured author token because the token transfer endpoint has no expiration enforcement and returns the raw token. This results in the attacker being able to receive new author cookies and impersonate the original author, granting unauthorized read and write access to collaborative pads. The weakness corresponds to information disclosure (CWE‑200) and the lack of cleanup or expiration leading to reuse (CWE‑294).

Affected Systems

The issue affects Etherpad versions ranging from 2.6.0 through 3.0.x. Versions 3.1.0 and later contain the fix. The affected product is the Etherpad real‑time collaborative editor provided by the ether:etherpad CNA.

Risk and Exploitability

The CVSS score of 6.8 indicates moderate severity, and the vulnerability is not listed in the CISA KEV catalog. No EPSS data is available, so the likelihood of exploitation is uncertain but the exposed token endpoint provides a straightforward remote attack vector. An attacker merely needs to obtain a valid transfer UUID, which can be generated by querying the GET endpoint, and can then repeatedly redeem it to obtain author cookies. Because the UUID is not validated for expiration or deletion after use, the risk of sustained impersonation exists, especially if an attacker can harvest multiple tokens.

Generated by OpenCVE AI on August 20, 2026 at 12:16 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade Etherpad to version 3.1.0 or later, which eliminates the replayable token transfer and removes cleartext exposure.
  • If upgrading is delayed, restrict or disable the /tokenTransfer endpoint and ensure that only authenticated users can access it to prevent unauthenticated token retrieval.
  • Remove any existing token transfer records from the database to eliminate leftover tokens that could still be redeemed.
  • Continuously monitor the Etherpad security advisories and apply future patches promptly.

Generated by OpenCVE AI on August 20, 2026 at 12:16 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-vqfp-p66c-xrp9 ep_etherpad-lite: Device-to-device author-token transfer endpoint is replayable, never expires, and exposes the cleartext author token
History

Fri, 21 Aug 2026 22:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'no', 'Exploitation': 'none', 'Technical Impact': 'total'}, 'version': '2.0.3'}


Fri, 21 Aug 2026 13:30:00 +0000

Type Values Removed Values Added
First Time appeared Etherpad
Etherpad etherpad
Vendors & Products Etherpad
Etherpad etherpad

Wed, 19 Aug 2026 19:45:00 +0000

Type Values Removed Values Added
Description Etherpad is a real-time collaborative editor. From 2.6.0 until 3.1.0, Etherpad's src/node/hooks/express/tokenTransfer.ts uses POST /tokenTransfer to store an author token for transfer between browsers and exposes it through GET /tokenTransfer/{uuid}. Although the record includes createdAt, the transfer has no expiration check, is not removed after successful redemption, and is returned by res.send(tokenData), including the raw author token. An unauthenticated attacker who obtains a transfer UUID can repeatedly redeem it, receive fresh author cookies, read the cleartext token, and impersonate the originating author for pad read and write operations. This issue is fixed in version 3.1.0.
Title Etherpad: Device-to-device author-token transfer endpoint is replayable, never expires, and exposes the cleartext author token
Weaknesses CWE-200
CWE-294
References
Metrics cvssV3_1

{'score': 6.8, 'vector': 'CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N'}


Subscriptions

Etherpad Etherpad
cve-icon MITRE

Status: PUBLISHED

Assigner: GitHub_M

Published:

Updated: 2026-08-21T21:48:47.361Z

Reserved: 2026-06-16T14:41:54.578Z

Link: CVE-2026-55088

cve-icon Vulnrichment

Updated: 2026-08-21T21:00:34.557Z

cve-icon NVD

Status : Deferred

Published: 2026-08-19T20:17:17.883

Modified: 2026-09-09T21:15:59.613

Link: CVE-2026-55088

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-21T13:03:31Z

Weaknesses
  • CWE-200

    Exposure of Sensitive Information to an Unauthorized Actor

  • CWE-294

    Authentication Bypass by Capture-replay