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
On a side note, noreferrer issue has been fixed in Firefox 52.
I suggest to not cater to older browsers as it is futile because there are numerous other security exploits those browsers are susceptible to. If the user wants to be secure, then the user should be using the latest browser.
rel="noopener"
should be added to links containingtarget="_blank"
as a precaution againstreverse tabnabbing
. For more information, please refer to the following article:"Target="_blank" - the most underestimated vulnerability ever"
For example:
HTML:
<a href="http://example.com" target="_blank">Link</a>
Fix:
<a href="http://example.com" target="_blank" rel="noopene">Link</a>
On a side note,
noreferrer
issue has been fixed in Firefox 52.I suggest to not cater to older browsers as it is futile because there are numerous other security exploits those browsers are susceptible to. If the user wants to be secure, then the user should be using the latest browser.
For further reading:
The text was updated successfully, but these errors were encountered: