SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-78378

MEDIUM · CVSS 6.9 EPSS 0.28% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-24 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

Ransomlook is vulnerable to a Redis glob pattern injection due to inadequate sanitization of user input, allowing unauthenticated attackers to manipulate Redis SCAN MATCH patterns. This could lead to unauthorized enumeration of sensitive health information across all groups, including private entities, and potentially destructive actions through unsafe interpolation in other functions. Organizations using Ransomlook should prioritize patching this vulnerability to mitigate risks associated with data exposure and unauthorized access.

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-78378
Severity
MEDIUM
CVSS
6.9
EPSS
0.28%

Original NVD Description

Ransomlook contains a Redis glob pattern injection vulnerability caused by insufficient neutralization of user-controlled input before it is incorporated into Redis SCAN MATCH patterns. The /api/health/<name> endpoint attempted to resolve the supplied name to a known group or market, but when resolution failed it fell back to using the attacker-controlled value directly in a Redis key pattern. An unauthenticated attacker could therefore supply Redis glob metacharacters such as *, ?, [ or ] to broaden the SCAN operation beyond the intended group. For example, requesting /api/health/* could enumerate health information, mirror slugs, and uptime series belonging to all groups and markets, including entities marked as private. Similar unsafe interpolation was present in /api/crypto/chain/<chain> and in the delete_manual_torrent() function. The latter represents a potentially destructive sink because a crafted infohash containing glob metacharacters could cause the scan to match torrent-health keys belonging to other torrents if attacker-controlled input can reach that function. The patch removes the unsafe fallback from the health endpoint and introduces glob escaping for user-controlled values before they are incorporated into Redis SCAN MATCH expressions.