kavin

Window.open() 和 target= blank 有个安全漏洞

kavin 安全防护 2022-12-25 357浏览 0

Window.open() 和 target= blank 有个安全漏洞

我们经常使用 HTML target="_blank" 或 window.open() 在新窗口中打开页面。

//inhtml
<ahref="www.google.com"target="_blank">opengoogle</a>

//injavascript
window.open("www.google.com")

但是,当新打开的页面指向一个我们不知道的网站时,我们就会被暴露在钓鱼网站的漏洞中。新页面通过 window.opener对象获得了对链接页面的一些部分访问权限。

例如,可以使用 window.opener.location 将初始页面的用户指向一个假的钓鱼网站,该网站模仿原始网站的外观并做各种恶心的事情。鉴于用户信任已经打开的页面,这可能是非常有效的。

为了防止这种情况,我们可以:

在 HTML 中使用 rel="noopener 和 target="_blank"。

<ahref="someLink.com"target="_blank"rel="noopenernoreferrer">
opensecurelyinanewtab
</a>

在Javascript中,一定要重置 opener 属性:

constnewWindow=window.open("someLink.com");
newWindow.opener=null;

后续:现在看来,noreferrer 是多余的,所以noopener` 对于HTML的使用应该是足够的。

作者:Daniel 译者:前端小智

继续浏览有关 安全 的文章
发表评论