SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-83627

CRITICAL · CVSS 9.8 EPSS 0.82% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-05 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The Hummingbird plugin for WordPress is vulnerable to Remote Code Execution due to improper handling of the debug log file, which allows unauthenticated attackers to write and execute arbitrary PHP code. This critical vulnerability affects all versions up to 3.21.0 and requires the Page Caching feature with Debug Log enabled, making it imperative for site administrators using this plugin to prioritize immediate updates and security measures. Organizations relying on this plugin should assess their configurations and apply the necessary patches to mitigate potential exploitation risks.

Public Exploit Signal

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

Detected Signals
exploit remote code execution code execution

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

CVE
CVE-2026-83627
Severity
CRITICAL
CVSS
9.8
EPSS
0.82%
WordPress

Original NVD Description

The Hummingbird – Speed Optimization, Caching, Minify, Compress & CDN plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 3.21.0 via the log_msg() function in core/modules/class-page-cache.php. The page-cache debug log is written to wp-content/wphb-logs/page-caching-log.php, a directly web-accessible PHP file that is supposed to be protected by a leading '<?php die(); ?>' header. That header is guarded by class_exists( 'Filesystem' ), which can never match because class_exists() resolves string arguments in the global namespace while the class is Hummingbird\Core\Filesystem; when the log is created during a front-end request the header is therefore omitted entirely. get_cookies() then writes the raw name of any cookie matching the wphb_cache_ prefix into that file without sanitization. This makes it possible for unauthenticated attackers to write arbitrary PHP into the log file with a single anonymous request and execute it by requesting the file directly, resulting in full remote code execution. Exploitation requires the site administrator to have enabled Page Caching with the Debug Log option (non-default), and the log file to be created during a front-end request — a state reached by the plugin's own 'Clear logs' action, any cache flush, or unattended via the plugin's daily log-rotation cron, which can strip the protective header from an existing log file.