window.open()和target= blank存在安全漏洞
Posted 前端小智@大迁世界
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.open()和target= blank存在安全漏洞相关的知识,希望对你有一定的参考价值。
作者:Daniel
译者:前端小智
来源:js-craft
我们经常使用 html target="_blank"
或 window.open()
在新窗口中打开页面。
// in html
<a href="www.google.com" target="_blank">open google</a>
// in javascript
window.open("www.google.com")
但是,当新打开的页面指向一个我们不知道的网站时,我们就会被暴露在钓鱼网站的漏洞中。新页面通过 window.opener
对象获得了对链接页面的一些部分访问权限。
例如,可以使用 window.opener.location
将初始页面的用户指向一个假的钓鱼网站,该网站模仿原始网站的外观并做各种恶心的事情。鉴于用户信任已经打开的页面,这可能是非常有效的。
为了防止这种情况,我们可以:
在 HTML 中使用 rel="noopener
和 target="_blank"
。
<a href="someLink.com" target="_blank" rel="noopener noreferrer">
open securely in a new tab
</a>
在Javascript中,一定要重置 opener
属性:
const newWindow = window.open("someLink.com");
newWindow.opener = null;
后续:现在看来,noreferrer 是多余的,所以
noopener` 对于HTML的使用应该是足够的。
原文:http://www.js-caft.io/blog/window-open-and-target_blank-have-a-security-vulnerability/
交流
有梦想,有干货,微信搜索 【大迁世界】 关注这个在凌晨还在刷碗的刷碗智。
本文 GitHub https://github.com/qq449245884/xiaozhi 已收录,有一线大厂面试完整考点、资料以及我的系列文章。
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-Yv2VN0sP-1634778028908)(/img/remote/1460000020353567?w=800&h=400)]
以上是关于window.open()和target= blank存在安全漏洞的主要内容,如果未能解决你的问题,请参考以下文章
javascript 打开页面window.location和window.open的区别
js 怎么在document.location.href中用target