CVE-2026-59805
Received Received - Intake

Broken Access Control in Gumroad PurchasesController

Vulnerability report for CVE-2026-59805, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-08

Last updated on: 2026-07-08

Assigner: VulnCheck

Description

Gumroad before 2026.07.06.2 contains a broken access control vulnerability in the PurchasesController that allows authenticated sellers to manipulate purchase access for other sellers' products by sending PUT requests to the revoke_access and undo_revoke_access actions without seller ownership validation. Attackers can modify the is_access_revoked status on arbitrary purchases to unauthorized revoke or restore buyer access to products they do not own.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-08
Last Modified
2026-07-08
Generated
2026-07-09
AI Q&A
2026-07-08
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 2 associated CPEs
Vendor Product Version / Range
gumroad gumroad to 2026.07.06.2 (exc)
antiwork gumroad to 2026.07.06.2 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-862 The product does not perform an authorization check when an actor attempts to access a resource or perform an action.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Impact Analysis

This vulnerability can impact you by allowing unauthorized sellers to revoke or restore buyer access to products they do not own. This means that a malicious seller could prevent legitimate buyers from accessing their purchased products or restore access improperly, potentially causing loss of revenue, customer trust, and disruption of service.

Executive Summary

CVE-2026-59805 is an Insecure Direct Object Reference (IDOR) vulnerability in Gumroad's PurchasesController. It allows any authenticated seller to manipulate purchase access for products they do not own by sending crafted PUT requests to the revoke_access and undo_revoke_access actions. These actions lacked proper seller ownership verification, enabling attackers to revoke or restore buyer access to purchases belonging to other sellers without authorization.

Detection Guidance

This vulnerability involves unauthorized PUT requests to the revoke_access and undo_revoke_access actions in Gumroad's PurchasesController. Detection can focus on monitoring for unusual or unauthorized PUT requests targeting endpoints like /purchases/:external_id/revoke_access or /purchases/:external_id/undo_revoke_access.

Commands to detect such activity could include network traffic inspection or web server log analysis to identify PUT requests to these specific endpoints from authenticated sellers who do not own the referenced purchase.

  • Use tools like tcpdump or Wireshark to capture HTTP traffic and filter for PUT requests to /purchases/*/revoke_access or /undo_revoke_access.
  • Analyze web server logs (e.g., using grep) for PUT requests to these endpoints, for example: grep 'PUT /purchases/' /var/log/nginx/access.log | grep 'revoke_access'
  • Implement application-level logging to record seller IDs and external purchase IDs for revoke_access and undo_revoke_access actions to detect suspicious cross-seller access attempts.
Mitigation Strategies

The primary mitigation is to update Gumroad to version 2026.07.06.2 or later, where the vulnerability has been fixed by adding proper seller ownership verification to the revoke_access and undo_revoke_access actions.

If immediate update is not possible, restrict access to the affected endpoints by implementing additional access controls or monitoring to detect and block unauthorized PUT requests.

  • Apply the patch that adds the verify_current_seller_is_seller_for_purchase before-action filter to the revoke_access and undo_revoke_access actions.
  • Review and audit seller permissions to ensure no unauthorized sellers can perform cross-seller access revocation.
  • Monitor logs for suspicious activity related to these endpoints and respond promptly to any detected abuse.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-59805. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart