<!DOCTYPE html>
<html lang="tr">
<meta charset="UTF-8">
SYSTEM CRITICAL ERROR - COMPROMISED<title>SYSTEM CRITICAL ERROR - COMPROMISED</title>
<style>
body {
background-color: #000;
color: #ff0000;
font-family: 'Courier New', Courier, monospace;
overflow: hidden;
margin: 0;
user-select: none; /* Yazı seçmeyi engeller */
}
canvas { position: absolute; top: 0; left: 0; z-index: 1; opacity: 0.3; }
.main-container {
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background: radial-gradient(circle, rgba(20,0,0,0.8) 0%, rgba(0,0,0,1) 70%);
}
.glitch {
font-size: 5vw;
font-weight: bold;
text-transform: uppercase;
position: relative;
text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00;
animation: glitch 725ms infinite;
}
@keyframes glitch {
0% { text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00; }
15% { text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff, 0.025em 0.04em 0 #fffc00; }
16% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff, -0.05em -0.05em 0 #fffc00; }
49% { text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff, -0.05em -0.05em 0 #fffc00; }
50% { text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff, 0 -0.04em 0 #fffc00; }
99% { text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff, 0 -0.04em 0 #fffc00; }
100% { text-shadow: -0.025em 0 0 #00fffc, -0.025em -0.025em 0 #fc00ff, -0.025em -0.05em 0 #fffc00; }
}
.signature { color: #fff; font-size: 2em; margin-top: 20px; text-shadow: 0 0 10px #ff0000; }
.warning { color: yellow; margin-top: 10px; font-size: 1.2em; border: 2px solid yellow; padding: 10px; animation: blink 0.5s infinite; }
@keyframes blink { 0% { opacity: 1; } 100% { opacity: 0; } }
iframe { position: absolute; visibility: hidden; width: 1px; height: 1px; }
</style>
<body oncontextmenu="return false;" onkeydown="return false;">
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ?autoplay=1&loop=1&playlist=dQw4w9WgXcQ" allow="autoplay"></iframe>
<canvas id="matrix"></canvas>
<div class="main-container">
<div class="glitch">SYSTEM TERMINATED</div>
<div class="signature">Hacked by <span style="color:#00fffc;">ubeytkzlts</span> & <span style="color:#fc00ff;">linux_adam</span></div>
<div class="warning">DİKKAT: TÜM DOSYALAR ŞİFRELENMİŞTİR!
WARNING: ALL FILES ARE ENCRYPTED!</div>
<p style="color: #444; margin-top: 30px;">(31)</p>
</div>
<script>
// Matrix Arkaplanı
const canvas = document.getElementById('matrix');
const ctx = canvas.getContext('2d');
canvas.width = window.innerWidth; canvas.height = window.innerHeight;
const characters = "010101UBEYTKLZTSLINUXADAM010101";
const fontSize = 16;
const columns = canvas.width / fontSize;
const drops = Array(Math.floor(columns)).fill(1);
function draw() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
ctx.fillStyle = "#ff0000";
ctx.font = fontSize + "px Courier New";
for (let i = 0; i < drops.length; i++) {
const text = characters.charAt(Math.floor(Math.random() * characters.length));
ctx.fillText(text, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) drops[i] = 0;
drops[i]++;
}
}
setInterval(draw, 33);
// Kaçışı Engelleme (F12, Ctrl+U, Ctrl+Shift+I)
document.onkeydown = function(e) {
if (e.keyCode == 123 || (e.ctrlKey && (e.shiftKey && (e.keyCode == 73 || e.keyCode == 74))) || (e.ctrlKey && e.keyCode == 85)) {
return false;
}
};
</script>