Cyber Resilience

CVE-2026-25222

MediumPublic PoC

Published: 02 February 2026

Published
02 February 2026
Modified
20 February 2026
KEV Added
Patch
CVSS Score v4 6.3 CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:L/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0004 12.9th percentile
Risk Priority 13 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-25222 is a medium-severity Exposure of Sensitive Information to an Unauthorized Actor (CWE-200) vulnerability in Polarlearn Polarlearn. Its CVSS base score is 6.3 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Email Addresses (T1589.002); ranked at the 12.9th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 IA-6 (Authentication Feedback) and SC-31 (Covert Channel Analysis).

Deeper analysis

CVE-2026-25222 is a timing attack vulnerability affecting PolarLearn, a free and open-source learning program, in versions 0-PRERELEASE-15 and earlier. The issue resides in the sign-in process, where unauthenticated attackers can determine if a specific email address is registered on the platform by measuring response times from the login endpoint. This discrepancy arises because the server performs computationally expensive Argon2 password hashing only for existing users, resulting in significantly longer response times—approximately 650ms for valid emails versus 160ms for non-existent ones. The vulnerability is rated with a CVSS v3.1 base score of 7.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N) and maps to CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor).

Unauthenticated remote attackers can exploit this vulnerability over the network with low complexity and no privileges required. By sending repeated login requests with targeted email addresses and timing the responses, attackers can reliably enumerate valid user accounts registered on the platform. This enables harvesting of email lists, which could facilitate further attacks such as phishing, credential stuffing, or social engineering, though it does not allow direct access to passwords or other account data.

Mitigation is detailed in the PolarLearn GitHub security advisory (GHSA-wcr9-mvr9-4qh5) and addressed in commit 6c276855172c7310cce0df996cb47ffe0d886741, which likely implements consistent timing behavior in the authentication flow to prevent side-channel leakage. Security practitioners should update to a patched version beyond 0-PRERELEASE-15 and review login endpoints for similar timing oracle issues in custom implementations.

EU & UK References

Vulnerability details

PolarLearn is a free and open-source learning program. In 0-PRERELEASE-15 and earlier, a timing attack vulnerability in the sign-in process allows unauthenticated attackers to determine if a specific email address is registered on the platform. By measuring the response time…

more

of the login endpoint, an attacker can distinguish between valid and invalid email addresses. This occurs because the server only performs the computationally expensive Argon2 password hashing if the user exists in the database. Requests for existing users take significantly longer (~650ms) than requests for non-existent users (~160ms).

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1589.002 Email Addresses Reconnaissance
Adversaries may gather email addresses that can be used during targeting.
T1087.003 Email Account Discovery
Adversaries may attempt to get a listing of email addresses and accounts.
Why these techniques?

Timing side-channel directly enables remote enumeration of valid email addresses/accounts (T1589.002, T1087.003) without authentication.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-25221Same product: Polarlearn Polarlearn
CVE-2026-25885Same product: Polarlearn Polarlearn
CVE-2026-35610Same product: Polarlearn Polarlearn
CVE-2026-25126Same product: Polarlearn Polarlearn
CVE-2026-39322Same product: Polarlearn Polarlearn
CVE-2026-2025Shared CWE-200
CVE-2024-13796Shared CWE-200
CVE-2025-27784Shared CWE-200
CVE-2025-26001Shared CWE-200
CVE-2026-42826Shared CWE-200

Affected Assets

polarlearn
polarlearn
all versions

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires obscuring authentication feedback, including timing data from login attempts, to prevent attackers from distinguishing valid email addresses via response time discrepancies.

prevent

Mandates identification and mitigation of covert timing channels, precisely addressing the side-channel leakage of registered user existence through differential response times in the sign-in process.

prevent

Limits consecutive unsuccessful logon attempts and enforces account lockouts, impeding attackers from sending the multiple timed requests required for reliable user enumeration.

References