<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SYSTEM FAILURE</title>
<style>
body {
background-color: #000;
color: #0f0; /* لون أخضر مثل الهاكرز */
font-family: 'Courier New', Courier, monospace;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
overflow: hidden;
text-shadow: 0 0 5px #0f0;
}
.container {
text-align: center;
border: 2px solid #0f0;
padding: 50px;
background: rgba(0, 20, 0, 0.9);
box-shadow: 0 0 20px #0f0;
z-index: 2;
}
h1 {
color: #ff0000;
font-size: 3rem;
text-transform: uppercase;
margin: 0;
animation: blink 0.2s infinite;
}
.warning {
color: #ff0000;
font-weight: bold;
font-size: 1.5rem;
margin-top: 20px;
}
.stats {
margin-top: 20px;
font-size: 1.2rem;
text-align: left;
display: inline-block;
}
/* أنيميشن النص الوامض */
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
/* خلفية مصفوفة خفيفة */
.matrix-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
color: #003300;
font-size: 15px;
line-height: 20px;
z-index: 1;
opacity: 0.3;
overflow: hidden;
user-select: none;
}
</style>
</head>
<body>
<div class="matrix-bg">
01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101
</div>
<div class="container">
<h1>☠️ YOU HAVE BEEN HACKED ☠️</h1>
<h1 style="direction: rtl;">لقد تم تهكيرك 💀</h1>
<div class="warning">⚠️ ALL FILES ARE BEING ENCRYPTED ⚠️</div>
<div class="stats">
<p>> Accessing Drive C: ... [OK]</p>
<p>> Downloading Photos ... [80%]</p>
<p>> Sending Data to Server ... [RUNNING]</p>
<p>> IP Address: <span id="ip">192.168.1.1</span></p>
</div>
<p style="margin-top: 30px; color: white; font-size: 0.8rem;">(امزح معك! هذه مجرد صفحة تجريبية لا تضر جهازك 😉)</p>
</div>
<script>
// إظهار رسالة تنبيه عند الدخول
window.onload = function() {
alert("SECURITY ALERT: System Intrusion Detected!");
};
// تغيير بسيط في الـ IP ليبدو حقيقياً
document.getElementById('ip').innerText = Math.floor(Math.random() * 255) + "." + Math.floor(Math.random() * 255) + ".1.105";
</script>
</body>
</html>