Tabnabbing Vulnerability in External Links

Created on 14 March 2025, 22 days ago

Problem/Motivation

The website currently uses window.open(d.url, '_blank'); to open external links in a new tab. This implementation introduces a tabnabbing vulnerability, where the newly opened tab can manipulate the parent window using window.opener, potentially redirecting users to phishing sites.

Proposed resolution

Vulnerability Type: Tabnabbing (exploitation of window.opener)
Impact: A malicious external site could hijack the parent tab and redirect users to a phishing page.
This could lead to credential theft, session hijacking, or other social engineering attacks.

Affected Code:
javascript
if (d.url) {
window.open(d.url, '_blank');
}

Proposed resolution

To mitigate tabnabbing, update the code to prevent access to window.opener.

if (d.url) {
    window.open(d.url, '_blank', 'noopener');
}

- https://developer.mozilla.org/en-US/docs/Web/API/Window/open
- https://stackoverflow.com/a/46958731

🐛 Bug report
Status

Active

Version

1.0

Component

Code

Created by

🇪🇸Spain GeduR

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024