Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The clickjacking attack #308

Merged
merged 17 commits into from
Sep 18, 2023
Merged
144 changes: 72 additions & 72 deletions 3-frames-and-windows/06-clickjacking/article.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<body style="margin:10px;padding:10px">

<input type="button" onclick="alert('Like pressed on facebook.html!')" value="I LIKE IT !">
<input type="button" onclick="alert('فشار داده شد facebook.html لایک در')" value="I LIKE IT !">

</body>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
}
</style>

<div>Click to get rich now:</div>
<div>:کلیک کنید تا الان ثروتمند شوید</div>

<!-- The url from the victim site -->
<!-- لینک سایت قربانی -->
<iframe src="facebook.html"></iframe>

<button>Click here!</button>
<button>اینجا کلیک کنید!</button>

<div>...And you're cool (I'm a cool hacker actually)!</div>
<div>...و تو باحال هستی (در واقع من یک هکر باحال هستم)</div>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<body style="margin:10px;padding:10px">

<input type="button" onclick="alert('Like pressed on facebook.html!')" value="I LIKE IT !">
<input type="button" onclick="alert('!فشار داده شد facebook.html لایک در')" value="I LIKE IT !">

</body>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
}
</style>

<div>Click to get rich now:</div>
<div>کلیک کنید تا الان ثروتمند شوید:</div>

<!-- The url from the victim site -->
<!-- لینک سایت قربانی -->
<iframe src="facebook.html"></iframe>

<button>Click here!</button>

<div>...And you're cool (I'm a cool hacker actually)!</div>
<div>...و تو باحال هستی (در واقع من یک هکر باحال هستم)!</div>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<body>

<div id="protector">
<a href="/" target="_blank">Go to the site</a>
<a href="/" target="_blank">به سایت بروید.</a>
</div>

<script>
Expand All @@ -31,11 +31,11 @@

</script>

This text is always visible.
.این متن همیشه قابل دیدن است

But if the page was open inside a document from another domain, the div over it would prevent any actions.
.روی آن از هر فعالیتی جلوگیری می‌کرد div از یک دامنه‌ی دیگر باز بود document اما اگر صفحه درون یک

<button onclick="alert(1)">Click wouldn't work in that case</button>
<button onclick="alert(1)">در آن صورت کلیک کار نمی‌کرد.</button>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<body>

<div>Changes top.location to javascript.info</div>
<div> تغییر می‌دهد javascript.info را به top.location </div>

<script>
top.location = 'https://javascript.info';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

window.onbeforeunload = function() {
window.onbeforeunload = null;
return "Want to leave without learning all the secrets (he-he)?";
return "می‌خواهی بدون اینکه تمام رازها را یادبگیری بروی؟ (ها-ها)";
};

document.body.insertAdjacentHTML('beforeend', '<iframe src="iframe.html">');
Expand All @@ -31,11 +31,11 @@

<body>

<p>After a click on the button the visitor gets a "strange" question about whether they want to leave.</p>
<p>بعد از یک کلیک روی دکمه، بازدیدکننده یک سوال "عجیب" دریافت می‌کند دباره‌ی اینکه می‌خواهد ترک کند یا نه.</p>

<p>Probably they would respond "No", and the iframe protection is hacked.</p>
<p>احتمالا آن‌ها پاسخ می‌دهد "نه" و حفاظت آ‌ی‌فریم هک می‌شود.</p>

<button onclick="attack()">Add a "protected" iframe</button>
<button onclick="attack()">یک آی‌فریم "حفاظت‌شده" اضافه کنید.</button>

</body>
</html>