SEPTEMBER 18, 2026
Live Feed
Back to database
Case File

CVE-2026-82644

HIGH · CVSS 7.5 EPSS 0.26% Public Exploit

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

CyberRota Analysis

AI-Generated

The vulnerability affects WWBN AVideo versions e01e41ecc and earlier, allowing unauthenticated attackers to bypass brute-force rate limiting on the login endpoint and 13 other endpoints. By exploiting the flawed rate limiting mechanism that misidentifies clients without a User-Agent header as bots, attackers can perform unlimited login attempts, significantly increasing the risk of successful password-guessing attacks. Organizations using affected versions of AVideo should prioritize patching this vulnerability to protect against potential 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-82644
Severity
HIGH
CVSS
7.5
EPSS
0.26%

Original NVD Description

WWBN AVideo (current e01e41ecc and earlier) contains a brute-force rate limiting bypass in enforceRateLimit(), which protects login.json.php and 13 other endpoints. The function stores its attempt counter via a cache layer (ObjectYPT::setCacheGlobal) that silently discards writes for any client identified as a bot by isBot(). Because isBot() treats a missing User-Agent header as a bot by default — and also matches common bot identifiers such as 'curl', 'bot', 'crawler', and 'spider' — the counter never increments for such clients, so the rate limit never fires. An unauthenticated attacker can therefore submit unlimited login attempts (e.g., by omitting the User-Agent header or using curl's default User-Agent), enabling unrestricted password-guessing attacks.