CVE-2025-27143: Beter Auth has an Open Redirect via Scheme-Less Callback Parameter
Summary The application is vulnerable to an open redirect due to improper validation of the callbackURL parameter in the email verification endpoint and any other endpoint that accepts callback url. While the server blocks fully qualified URLs (e.g., https://evil.com), it incorrectly allows scheme-less URLs (e.g., //malicious-site.com). This results in the browser interpreting the URL as https://malicious-site.com, leading to unintended redirection.
bypass for : https://github.com/better-auth/better-auth/security/advisories/GHSA-8jhw-6pjj-8723
Affected Versions All versions prior to 1.1.19
Details The application’s email verification endpoint (/auth/verify-email) accepts a callbackURL parameter intended to redirect users after successful email verification. While the server correctly blocks fully qualified external URLs (e.g., https://evil.com), it improperly allows scheme-less URLs (e.g., //malicious-site.com). This issue occurs because browsers interpret //malicious-site.com as https://malicious-site.com, leading to an open redirect vulnerability.
An attacker can exploit this flaw by crafting a malicious verification link and tricking users into clicking it. Upon successful email verification, the user will be automatically redirected to the attacker's website, which can be used for phishing, malware distribution, or stealing sensitive authentication tokens.
Impact Phishing & Credential Theft – Attackers can redirect users to a fake login page, tricking them into entering sensitive credentials, which can then be stolen.
Session Hijacking & Token Theft – If used in OAuth flows, an attacker could redirect authentication tokens to their own domain, leading to account takeover.
Other sources
Better Auth is an authentication and authorization library for TypeScript. Prior to version 1.1.21, the application is vulnerable to an open redirect due to improper validation of the callbackURL parameter in the email verification endpoint and any other endpoint that accepts callback url. While the server blocks fully qualified URLs, it incorrectly allows scheme-less URLs. This results in the browser interpreting the URL as a fully qualified URL, leading to unintended redirection. An attacker can exploit this flaw by crafting a malicious verification link and tricking users into clicking it. Upon successful email verification, the user will be automatically redirected to the attacker's website, which can be used for phishing, malware distribution, or stealing sensitive authentication tokens. This CVE is a bypass of the fix for GHSA-8jhw-6pjj-8723/CVE-2024-56734. Version 1.1.21 contains an updated patch.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/better-authto a version that resolves this vulnerability.Fixed in 1.1.20 - Upgrade
Upgrade
better-authto a version that resolves this vulnerability.Fixed in 1.1.19 - Upgrade
Upgrade
better-authto a version that resolves this vulnerability.Fixed in 1.1.21Patch GHSA-8jhw-6pjj-8723
Event History
Frequently Asked Questions
What is the severity of CVE-2025-27143?
CVE-2025-27143 has been rated as a high severity vulnerability due to its potential impact on user redirection security.
How do I fix CVE-2025-27143?
To fix CVE-2025-27143, upgrade the better-auth package to version 1.1.20 or later.
What kind of vulnerability is CVE-2025-27143?
CVE-2025-27143 is an open redirect vulnerability that arises from improper validation of URLs.
Which endpoints are affected by CVE-2025-27143?
CVE-2025-27143 affects the email verification endpoint and any other endpoint that accepts a callback URL.
Can CVE-2025-27143 allow redirection to malicious sites?
Yes, CVE-2025-27143 could potentially allow redirection to open or malicious sites by exploiting the callbackURL parameter.