CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



GHSA-9H47-PQCX-HJR4

GHSA-9H47-PQCX-HJR4: Insecure Cryptographic Defaults in Better Auth OIDC Provider

Alon Barad
Alon Barad
Software Engineer

Jul 7, 2026·6 min read·11 visits

Executive Summary (TL;DR)

Better Auth prior to v1.6.11 suffered from insecure defaults by advertising alg=none and accepting plain PKCE, enabling token forgery and session hijacking.

The Better Auth framework's OIDC provider implementation (oidcProvider) contained insecure cryptographic defaults before version 1.6.11. It advertised the insecure alg=none signing algorithm and accepted plain PKCE challenges by default, leaving downstream clients vulnerable to token signature bypasses and authorization code interception attacks.

Vulnerability Overview

The OpenID Connect (OIDC) provider component (oidcProvider) of the Better Auth framework is responsible for identity federation, issuing JSON Web Tokens (JWTs) representing authenticated sessions, and managing standard OIDC endpoints. In versions preceding v1.6.11, the provider suffered from critical insecure cryptographic defaults that compromised the integrity of token verification and session exchange flows. This vulnerability falls under the category of cryptographic issues and insecure configurations.

The attack surface is exposed via standard OIDC routing interfaces. Specifically, the metadata discovery endpoint (/.well-known/openid-configuration) and the token validation handlers within client integrations are affected. When these endpoints are configured with insecure defaults, they allow clients to trust weak algorithms or unhashed verifiers, compromising the entire trust boundary.

An unauthenticated remote attacker can exploit these configurations to bypass token signature verification or intercept and exchange authorization codes. The impact of these weaknesses is severe, potentially allowing unauthorized access to system resources and privilege escalation across downstream client systems that consume identities from the affected Better Auth OIDC provider.

Root Cause Analysis

The first critical issue lies in the advertisement of the none signature algorithm in the OIDC configuration. In the JWT specification (RFC 7519), the none algorithm indicates that the token is unsigned and requires no validation signature. Under normal operations, an OIDC provider must enforce cryptographic signatures (such as RS256 or ES256) to ensure the token has not been altered. Better Auth advertised none within the list of supported signing algorithms, meaning relying clients might accept unsigned assertions as authentic.

The second issue is the default acceptance of the plain code challenge method for Proof Key for Code Exchange (PKCE, RFC 7636). PKCE protects authorization flows against interception by requiring clients to present a secret verifier. There are two challenge methods: S256 (where the verifier is hashed using SHA-256) and plain (where the raw verifier is sent in the initial request).

By allowing plain by default, Better Auth removes the cryptographic protection intended by PKCE. If an attacker intercepts the initial authorization request, they capture the cleartext code challenge. Since no cryptographic hash transformation is applied, the intercepted value serves directly as the verifier, allowing the attacker to complete the token exchange process.

Vulnerable vs. Patched Code Analysis

The vulnerability manifests in how the OIDC configuration metadata is assembled and how PKCE requests are handled during verification. Prior to version v1.6.11, the provider endpoint exposed none in its supported algorithms, and validation checks allowed plain verifier matching without enforcing secure hashing.

The configuration template of the discovery endpoint previously contained the following algorithm list:

// Vulnerable OIDC discovery configuration template
const oidcConfig = {
  issuer: 'https://auth.example.com',
  authorization_endpoint: 'https://auth.example.com/oauth2/authorize',
  token_endpoint: 'https://auth.example.com/oauth2/token',
  // INSECURE: 'none' is explicitly advertised as a valid signing algorithm
  id_token_signing_alg_values_supported: ['RS256', 'none'],
  // INSECURE: 'plain' is allowed as a valid PKCE verification method
  code_challenge_methods_supported: ['plain', 'S256']
};

In the updated version (v1.6.11), the none algorithm is removed entirely from the advertised capabilities to prevent clients from choosing unsigned verification paths. Additionally, the token validation module rejects the plain PKCE challenge method unless explicitly configured to allow it for legacy compatibility.

// Patched OIDC discovery configuration template in v1.6.11
const oidcConfig = {
  issuer: 'https://auth.example.com',
  authorization_endpoint: 'https://auth.example.com/oauth2/authorize',
  token_endpoint: 'https://auth.example.com/oauth2/token',
  // SECURE: Only strong cryptographic algorithms are advertised; 'none' is removed
  id_token_signing_alg_values_supported: ['RS256'],
  // SECURE: Only 'S256' is advertised by default to enforce SHA-256 code challenge verification
  code_challenge_methods_supported: ['S256']
};

This mitigation is robust because it addresses both metadata advertisement and server-side enforcement. Removing none ensures compliant client libraries will never attempt to validate unsigned tokens against the provider, while enforcing S256 ensures the server rejects cleartext verifiers.

Exploitation Methodology

To exploit the signature bypass, an attacker first queries the openid-configuration endpoint to verify if the server advertises support for none. If advertised, the attacker constructs a forged JWT with the algorithm header set to none and an empty signature block. When the client application attempts to verify this token, it matches the header with the advertised capabilities and skips the cryptographic check, granting access to the attacker.

For PKCE interception, the attacker targets native or mobile clients that leverage custom URI schemes. The attacker installs a malicious application designed to register the same custom URI scheme. When the target client initiates authorization, it sends a cleartext challenge. Since plain is accepted, the attacker intercepts the code and challenge, directly exchanging them at the /oauth2/token endpoint.

This exploitation methodology requires no complex cryptanalysis. It relies entirely on the logical bypasses enabled by the insecure defaults, making the vulnerability trivial to exploit in environments where transport layer security or deep linking configurations are compromised.

Impact Assessment

The impact of these insecure defaults is high. In systems where client libraries blindly trust the discovery metadata, the alg=none capability allows complete account takeover. Attackers can forge identity tokens representing any user, including administrative accounts, bypassing authentication controls entirely without needing access to secret keys.

For systems relying on PKCE for mobile or single-page applications, accepting the plain code challenge method introduces session hijacking and authorization code theft vectors. An adversary positioned on the local network or hosting a malicious application on the user device can obtain session tokens, leading to unauthorized API access.

This vulnerability affects any deployment utilizing Better Auth as an identity provider with default configurations. The lack of standard cryptographic enforcement compromises the confidentiality and integrity of all data protected by the authentication system.

Remediation and Mitigation

The primary remediation strategy is upgrading the Better Auth package to version v1.6.11 or later. This update enforces secure defaults by removing none from advertised algorithms and disabling support for the plain PKCE method in default configurations.

To upgrade the package in a Node.js environment, execute the following command:

npm install better-auth@1.6.11

After upgrading, verify that the OIDC discovery configuration endpoint no longer lists none under id_token_signing_alg_values_supported and only advertises secure PKCE methods:

curl -s https://<your-auth-domain>/.well-known/openid-configuration | grep -i '"none"'

Ensure that any integrated client applications are configured to explicitly demand the S256 PKCE method, preventing any legacy clients from downgrading to insecure validation paths.

Official Patches

Better AuthBetter Auth release v1.6.11 containing secure defaults

Technical Appendix

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

Affected Systems

Better Auth frameworkoidcProvider component

Affected Versions Detail

Product
Affected Versions
Fixed Version
Better Auth
Better Auth
< 1.6.111.6.11
AttributeDetail
CWE IDCWE-347, CWE-327
Attack VectorNetwork (Unauthenticated)
CVSS Score9.8 (Critical)
EPSS ScoreNot Available (No CVE mapping)
ImpactToken forgery and authorization code interception
Exploit StatusProof-of-concept / Conceptual
KEV StatusNot Listed

MITRE ATT&CK Mapping

T1556Modify Authentication Process
Defense Evasion
T1539Steal Web Session Cookie
Credential Access
CWE-347
Improper Verification of Cryptographic Signature

Vulnerability Timeline

Discovery of insecure cryptographic defaults in oidcProvider
2024-11-20
Vendor release of patched version v1.6.11
2024-11-25
GitHub Security Advisory GHSA-9H47-PQCX-HJR4 published
2024-11-25

References & Sources

  • [1]Better Auth v1.6.11 Release Notes
  • [2]GitHub Security Advisory GHSA-9H47-PQCX-HJR4

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•2 days ago•CVE-2026-54068
5.9

CVE-2026-54068: Unauthenticated Server-Side Template Injection and SQLite Exfiltration in SiYuan PKM

An authentication bypass in the SiYuan personal knowledge management system before version 3.7.0 exposes a dynamic icon rendering endpoint. This endpoint processes client-supplied Go template directives. By submitting a crafted request, an unauthenticated remote attacker can leverage registered database template functions to execute arbitrary read-only SQL queries and exfiltrate workspace contents.

Amit Schendel
Amit Schendel
14 views•5 min read
•2 days ago•CVE-2026-54069
9.1

CVE-2026-54069: Authentication Bypass in SiYuan Note via Origin Header Spoofing

CVE-2026-54069 is a critical authentication bypass vulnerability in the SiYuan Note personal knowledge management system. The flaw is located in the HTTP server's middleware handling API authorization, which unconditionally trusts requests carrying a 'chrome-extension://' scheme in the Origin HTTP header, granting administrative access without validating API tokens.

Alon Barad
Alon Barad
12 views•5 min read
•2 days ago•CVE-2026-54089
9.1

CVE-2026-54089: Authentication Bypass by Spoofing in File Browser

CVE-2026-54089 is a critical authentication bypass vulnerability in File Browser affecting instances configured with proxy-based authentication. An unauthenticated remote attacker with direct network access can impersonate arbitrary users or register new accounts by spoofing configured HTTP headers.

Amit Schendel
Amit Schendel
13 views•7 min read
•2 days ago•GHSA-99J7-FHR2-XFJ4
10.0

GHSA-99J7-FHR2-XFJ4: Malicious Remote Code Execution Payload in 'exploration' Cargo Crate

The malicious Cargo package 'exploration' was uploaded to the crates.io registry. During compilation or package import, the crate executes code designed to establish an outbound TCP/HTTP connection, download an external second-stage binary, and execute the binary locally on the host machine. This creates an unauthenticated remote code execution vector impacting developer environments and continuous integration pipelines.

Amit Schendel
Amit Schendel
14 views•6 min read
•2 days ago•CVE-2026-54088
9.3

CVE-2026-54088: Pre-Authentication Remote Code Execution in File Browser Hook Authentication

CVE-2026-54088 is a critical command injection vulnerability in File Browser prior to version 2.63.6. When Hook Authentication is enabled, the application interpolates unsanitized credentials into a shell command, allowing unauthenticated remote code execution.

Alon Barad
Alon Barad
14 views•6 min read
•3 days ago•GHSA-QV4M-M73M-8HJ7
8.8

GHSA-qv4m-m73m-8hj7: Authenticated Arbitrary File Upload leading to Remote Code Execution in NotrinosERP

An authenticated remote code execution vulnerability exists in NotrinosERP (versions up to and including 1.0.0) within the Human Resource Management (HRM) module. Users with employee management permissions can upload arbitrary file types, including PHP scripts, which are written directly to a web-accessible directory. This allows for arbitrary code execution in the context of the web-server user.

Alon Barad
Alon Barad
9 views•6 min read