Description
NextAuth.js provides authentication for Next.js. From next-auth 5.0.0-beta.0 until 5.0.0-beta.32, applications that gate access by checking only for the existence of the auth object returned by the auth() wrapper can fail open when Auth.js has a server configuration error. In middleware, Route Handlers, React Server Components, and other auth() entry points, a non-OK session response is parsed into a truthy error object instead of null, so checks such as !!auth and if (req.auth) evaluate to true for unauthenticated requests. A provider missing both the issuer and authorization endpoint triggers InvalidEndpoints, and an unset AUTH_SECRET or another server configuration error can produce the same behavior. There is no impact while configuration is valid, but after a deployment becomes misconfigured, routes protected only by session existence silently grant access to every visitor. This issue is fixed in next-auth 5.0.0-beta.32.
Published: 2026-08-13
Score: 9.1 Critical
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A configuration error in NextAuth.js causes the auth() wrapper to return an error object instead of null when the server is misconfigured. Applications that rely solely on the truthiness of the returned auth object for access control thus treat unauthenticated requests as authenticated, allowing users to bypass protected routes. This results in unauthorized access to protected content.

Affected Systems

The vulnerability affects the NextAuth.js library, specifically the next-auth package, in versions from 5.0.0-beta.0 through 5.0.0-beta.32. Upgrading to 5.0.0-beta.32 or a later release mitigates the issue.

Risk and Exploitability

The CVSS score of 9.1 indicates a high severity flaw, and the EPSS score is not available, suggesting no publicly observed exploitation at this time. The vulnerability is not listed in the CISA KEV catalog. Because the flaw is triggered by server configuration errors, the likely attack vector involves either accidental misconfiguration during deployment or an attacker with the ability to alter server settings. Properly configured applications are not affected, but once a deployment becomes misconfigured, routes guarded only by existence checks silently grant access to every visitor.

Generated by OpenCVE AI on August 14, 2026 at 00:29 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the next-auth package to 5.0.0-beta.32 or later
  • Verify that authentication logic checks for auth.errors or null session objects, not just truthiness
  • Ensure mandatory configuration settings such as issuer, authorization endpoint, and AUTH_SECRET are correctly set for every deployment

Generated by OpenCVE AI on August 14, 2026 at 00:29 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Github GHSA Github GHSA GHSA-8fpg-xm3f-6cx3 Auth.js: Configuration errors can cause existence-based auth checks to fail open (auth object populated with an error)
History

Fri, 14 Aug 2026 00:00:00 +0000

Type Values Removed Values Added
First Time appeared Nextauth.js
Nextauth.js next-auth
Vendors & Products Nextauth.js
Nextauth.js next-auth

Thu, 13 Aug 2026 22:15:00 +0000

Type Values Removed Values Added
Description NextAuth.js provides authentication for Next.js. From next-auth 5.0.0-beta.0 until 5.0.0-beta.32, applications that gate access by checking only for the existence of the auth object returned by the auth() wrapper can fail open when Auth.js has a server configuration error. In middleware, Route Handlers, React Server Components, and other auth() entry points, a non-OK session response is parsed into a truthy error object instead of null, so checks such as !!auth and if (req.auth) evaluate to true for unauthenticated requests. A provider missing both the issuer and authorization endpoint triggers InvalidEndpoints, and an unset AUTH_SECRET or another server configuration error can produce the same behavior. There is no impact while configuration is valid, but after a deployment becomes misconfigured, routes protected only by session existence silently grant access to every visitor. This issue is fixed in next-auth 5.0.0-beta.32.
Title NextAuth.js: Configuration errors can cause existence-based auth checks to fail open (auth object populated with an error)
Weaknesses CWE-285
CWE-636
References
Metrics cvssV4_0

{'score': 9.1, 'vector': 'CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N'}


Subscriptions

Nextauth.js Next-auth
cve-icon MITRE

Status: PUBLISHED

Assigner: GitHub_M

Published:

Updated: 2026-08-13T22:04:36.985Z

Reserved: 2026-08-12T14:32:11.795Z

Link: CVE-2026-73421

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-13T22:17:26.447

Modified: 2026-08-13T22:17:26.447

Link: CVE-2026-73421

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-14T00:30:03Z

Weaknesses
  • CWE-285

    Improper Authorization

  • CWE-636

    Not Failing Securely ('Failing Open')