Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-47377
Published:June 05, 2026
Updated:June 06, 2026
Summary The client-side "hashRedirect" plugin called "window.location.replace()" on a path extracted from the URL hash fragment after only checking "hashPath.startsWith('/')". Protocol-relative URLs ("//attacker.com/…") also satisfy that check, so a crafted link such as "https://nocodb.example/#//attacker.com/phishing" silently redirected visitors to an attacker-controlled origin. Details In "packages/nc-gui/plugins/hashRedirect.client.ts", the plugin extracted the hash content and normalised it into "cleanUrl": let cleanUrl = hashPath.startsWith('/') ? hashPath : "/${hashPath}" if (hashQuery) cleanUrl += "?${hashQuery}" window.location.replace(cleanUrl) "startsWith('/')" returns true for "//attacker.com/...", which browsers interpret as a protocol-relative absolute URL. No hostname check was performed before the redirect. The fix adds an early "if (/^/[/\]/.test(hashPath)) return" to reject protocol-relative paths. Impact - Open redirect from any NocoDB origin to an attacker-controlled domain. - No authentication required; the attack lands the victim on an attacker-controlled page that may impersonate a NocoDB login. Credit This issue was reported by "@fg0x0" (https://github.com/fg0x0).
Affected Packages
https://github.com/nocodb/nocodb.git (GITHUB):
Affected version(s) >=crea <2026.04.1
Fix Suggestion:
Update to version 2026.04.1
nocodb (NPM):
Affected version(s) >=0.0.1 <2026.04.1
Fix Suggestion:
Update to version 2026.04.1
Do you need more information?
Contact Us
CVSS v4
Base Score:
5.1
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
ACTIVE
Vulnerable System Confidentiality
LOW
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
4.3
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
REQUIRED
Scope
UNCHANGED
Confidentiality
LOW
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
URL Redirection to Untrusted Site ('Open Redirect')