xctf攻防世界—Web新手練習區 writeup

木汐染發表於2020-12-22

#專案場景:view_source

難度係數:1.0
題目來源: Cyberpeace-n3k0
題目描述:X老師讓小寧同學檢視一個網頁的原始碼,但小寧同學發現滑鼠右鍵好像不管用了
題目場景: http://220.249.52.134:32583

問題描述:

提示:進入頁面後顯示:“FLAG is not here”,滑鼠右鍵選單欄不能正常觸發


解決方案:

提示:通過在題目地址前新增**view-source:**訪問網頁原始碼,得到如下所示:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Where is the FLAG</title>
</head>
<body>
<script>
document.oncontextmenu=new Function("return false")
document.onselectstart=new Function("return false")
</script>


<h1>FLAG is not here</h1>


<!-- cyberpeace{2a586c05e285d0d780c431664662f483} -->

</body>
</html>

由此得出了flag:

提示:每個人的flag都不同

相關文章