CVE-2026-14495 HIGH

CVE-2026-14495: DoLogin Security <= 4.3 - Unauthenticated Authentication Bypass via Insufficient Randomness via 'dologin' Parameter Weak PRNG Token

Vendor Wpdo5Ea
Product DoLogin Security
Weakness CWE-338
Published July 8, 2026
Last update July 8, 2026

CVSS base score

8.8/10
Attack vector Network
Attack complexity Low
Privileges required Low
User interaction None
Confidentiality High
Integrity High

CVSS vector

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

What the vulnerability does

01Description

The DoLogin Security plugin for WordPress is vulnerable to Authentication Bypass via Insufficient Randomness in all versions up to, and including, 4.3. The vulnerability exists because `dologin\s::rrand()` seeds the Mersenne Twister with `mt_srand((double) microtime() * 1000000)` — discarding the integer-seconds component of `microtime()` and constraining the seed to a range of approximately 10^6 values (~20 bits of entropy) — after which every character of the 32-character magic-link token is drawn sequentially with `mt_rand()`, making the entire token a deterministic function of that seed. Because `Pswdless::try_login()` is registered on the unauthenticated `init` hook, resolves the target account by the auto-increment numeric ID embedded in the `?dologin=<id>.<hash>` parameter, performs the hash comparison using a non-constant-time `!=` operator, and then calls `wp_set_auth_cookie()` directly — never passing through `wp_authenticate()` and therefore never triggering the plugin's own `Auth::_has_login_err()` lockout — an unauthenticated attacker can brute-force the ~10^6-candidate seed space to reconstruct an active passwordless login token and authenticate as any targeted user, including administrators, without a password. Exploitation requires that a valid, unexpired passwordless login link (active for up to 7 days) exists for the target account at the time of the attack, and that the numeric link ID is known or guessable from the auto-increment primary key.

Explanation of Vulnerability in Simple Terms

02Summary

DoLogin Security versions 4.3 and earlier contain a use of insufficiently random values (CWE-338) that allows an authenticated attacker to read sensitive data, modify site content, or disrupt service. The vulnerability requires a valid user account but no additional user interaction. An attacker with low-privilege access can exploit this to compromise confidentiality, integrity, and availability of the site.

What an attacker can do

03Attacker Capabilities

Read sensitive data, modify site content, or disrupt service availability with a valid user account.

Potential impact on your site

04Site Impact

Authenticated users can read private data, alter content, or cause downtime without admin privileges.

Conditions required to exploit

05Prerequisites

Attacker must have a low-privilege user account; no user interaction required.

Key dates

06Disclosure timeline

July 8, 2026 CVE published