AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-73155

MEDIUM · CVSS 5.3 EPSS 0.26% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-11 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

Authenticated users of cti-transmute can exploit a vulnerability that allows them to add or remove emoji reactions on comments without proper authorization checks, potentially affecting private or restricted comments. This could lead to unauthorized modification of reaction states, compromising comment privacy and integrity. Organizations utilizing cti-transmute should prioritize patching this vulnerability to prevent unauthorized access and maintain comment confidentiality.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-73155
Severity
MEDIUM
CVSS
5.3
EPSS
0.26%

Original NVD Description

Affected versions of cti-transmute allow authenticated users to add or remove emoji reactions on comments without first checking whether those users are authorized to view the target comment. The vulnerable react() handler passed an attacker-controlled comment_id directly to comments_repo.toggle_reaction() after only validating that the ID existed syntactically and that the requested emoji was permitted. Because comment-level visibility was not enforced, a user who could identify the ID of a private or otherwise inaccessible comment could modify reaction state on that comment despite lacking permission to access it. The fix retrieves the target comment, rejects missing or deleted comments, retrieves its associated conversion, and enforces access.can_see_comment(current_user, comment, conversion). Unauthorized requests now receive HTTP 403.