You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue lies within the 'bulkimportusers.html' file and other files where we're using an external link to open a new tab or window. The problem is that the new page could potentially access the original page's information, posing a security risk. Detected by CodeQL deployed on forked repository.
Steps to Reproduce
Open the 'bulkimportusers.html' file, which can be found in the app/views/organization/bulkimport directory.
Check out the HTML link element on line 93 that is opening a new tab or window.
Expected Behaviour
Any external link that opens in a new tab or window should be secure and not expose any sensitive data from the original page.
Actual Behaviour
Our external link is not currently using the rel="noopener noreferrer" attribute, which means the new page could access information from our original page.
Description
The issue lies within the 'bulkimportusers.html' file and other files where we're using an external link to open a new tab or window. The problem is that the new page could potentially access the original page's information, posing a security risk. Detected by CodeQL deployed on forked repository.
Steps to Reproduce
Expected Behaviour
Any external link that opens in a new tab or window should be secure and not expose any sensitive data from the original page.
Actual Behaviour
Our external link is not currently using the rel="noopener noreferrer" attribute, which means the new page could access information from our original page.
Settings
Screenshots
References
Mathias Bynens: About rel=noopener
Mozilla Developer Network: HTML Anchor Element
Common Weakness Enumeration: CWE-200
Common Weakness Enumeration: CWE-1022
The text was updated successfully, but these errors were encountered: