diff --git a/resources/views/hacker/clickjacking.blade.php b/resources/views/hacker/clickjacking.blade.php new file mode 100644 index 0000000..83c13b9 --- /dev/null +++ b/resources/views/hacker/clickjacking.blade.php @@ -0,0 +1,80 @@ + + + + + + Win a Free iPhone! + + + +

🎉 Congratulations! You are our 1,000,000th visitor! 🎉

+

Click the button below to instantly claim your prize.

+ +
+ + + +
+ +
+ Lab Note (Developer Tools):
+ 1. Open this page as the Hacker.
+ 2. Adjust the CSS top and left of the `.bait-button` so it sits perfectly underneath the "Update Email" or "Delete Account" button inside the iframe.
+ 3. Change opacity: 0.4; to opacity: 0; to finalize the attack. +
+ + \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 5016257..eff6fa7 100644 --- a/routes/web.php +++ b/routes/web.php @@ -25,6 +25,8 @@ return view('hacker.csrf-exploit'); })->name('hacker.csrf.exploit'); + // New Route: Clickjacking Exploit Page + }); /* @@ -60,4 +62,4 @@ // (فضای خالی برای حملات بعدی مثل Phishing، MITB و ...) }); -}); \ No newline at end of file +});