Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-25050 — vendure

🟡 CVSS 5.3 — Medium ✅ No Known Exploit CWE-202 NVD
5.3
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Vendure vulnerable to timing attack that enables user enumeration in NativeAuthenticationStrategy

Summary

The NativeAuthenticationStrategy.authenticate() method is vulnerable to a timing attack that allows attackers to enumerate valid usernames (email addresses).

Details

In packages/core/src/config/auth/native-authentication-strategy.ts, the authenticate method returns immediately if a user is not found:

```typescript

const user = await this.userService.getUserByEmailAddress(ctx, data.username);

if (!user) {

return false; // Instant return (~1-5ms)

}

const passwordMatch = await this.verifyUserPassword(ctx, user.id, data.password);

// Password check takes ~200-400ms with bcrypt (12 rounds)

```

The significant timing difference (~200-400ms for bcrypt vs ~1-5ms for DB miss) allows attackers to reliably distinguish between existing and non-existing accounts.

Impact

  • Attackers can enumerate valid user accounts
  • Enables targeted brute-force or phishing attacks
  • Information disclosure (account existence)

Recommended Fix

Perform a dummy bcrypt check when user is not found to ensure consistent response times.

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality low, integrity none, availability none.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

  • Attack vector: Network — reachable from anywhere that can route to the service.
  • Attack complexity: Low — the attack works reliably, with no preparation.
  • Privileges required: None — an unauthenticated stranger can try it.
  • User interaction: None — nobody has to be tricked into anything.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: Low — limited, and the attacker does not choose what is affected.
  • Integrity impact: None.
  • Availability impact: None.

Weakness class

CVE-2026-25050 is classified as CWE-202: Exposure of Sensitive Information Through Data Queries. When trying to keep information confidential, an attacker can often infer some of the information by using statistics.

Affected software

CVE-2026-25050 is recorded against 2 packages.

  • @vendure/core
  • vendure (fixed in 3.5.3)

Timeline and source

Published on 30 January 2026 and last revised on 3 February 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)
github.com (Web)

Other advisories for this package

@vendure/core has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-202: Exposure of Sensitive Information Through Data Queries) in other software:

Details

Severity LOW
CVSS Score 5.3
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
CWE CWE-202
Public Exploit ✅ No
Source NVD
Published 2026-01-30
Updated 2026-08-20
Modified 2026-02-03
Fix URL N/A

Affected Packages

Software From version Fixed in
@vendure/core
vendure 3.5.3

Similar Threats

Vulnerability Monitoring

Track new vulnerabilities in vendure

CVE-2026-25050 is rated CVSS 5.3 Medium. BotEraser monitors your WordPress installation and notifies you when software you use appears in our vulnerability database.

Set Up Free Alerts →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026