AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-15341

CRITICAL · CVSS 9.8

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

CyberRota Analysis

AI-Generated

The User Session Synchronizer plugin for WordPress is critically vulnerable to authentication bypass, allowing unauthenticated attackers to take over user accounts, including those of administrators. This vulnerability arises from the lack of validation on attacker-supplied parameters, leading to predictable encryption keys and the ability to manipulate session authentication. WordPress site administrators using this plugin should prioritize immediate updates to version 1.4.1 or later to mitigate this severe risk.

CVE
CVE-2026-15341
Severity
CRITICAL
CVSS
9.8
EPSS
N/A
WordPress

Original NVD Description

The User Session Synchronizer plugin for WordPress is vulnerable to Authentication Bypass leading to Account Takeover in all versions up to, and including, 1.4.0. The `synchronize_session()` function, hooked on `init` and therefore executed on every request, performs no nonce, capability, or shared-secret validation against the attacker-supplied `ussync-key`, `ussync-token`, and `ussync-ref` parameters; when `ussync-key` references an unregistered slot, `get_option()` returns `false` for both the secret key and the domain list, causing the AES-256-CBC encryption key to degrade to the fully predictable `md5('')` and the referer allowlist to collapse to an empty-string match, while the AES IV is unconditionally hard-coded as `md5('another-secret')`. This makes it possible for unauthenticated attackers to supply a crafted request encrypting any known or guessable user email address in the `ussync-ref` parameter, causing the handler to call `wp_set_auth_cookie()` for the matched user and granting full authentication as that user — including administrators — with no prior knowledge of site secrets.