ChatGPT ile THT ve Matrix karışık temalı bir Hacked Index yaptım, gönül rahatlığıyla kullanabilirsiniz. İyi defaceler dilerim 
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>No System is Safe</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body {
margin: 0;
padding: 0;
background: black;
color: white;
font-family: 'Courier New', Courier, monospace;
overflow: hidden;
height: 100%;
user-select: none;
cursor: not-allowed;
}
.center {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
pointer-events: none;
}
h1.glitch {
font-size: 3em;
position: relative;
color: white;
animation: glitch 1s infinite;
}
@keyframes glitch {
0% { text-shadow: 2px 0 red, -2px 0 white; }
20% { text-shadow: -2px -1px red, 2px 1px white; }
40% { text-shadow: 2px 2px red, -2px -2px white; }
60% { text-shadow: -1px 2px red, 1px -2px white; }
80% { text-shadow: 0 0 red, 0 0 white; }
100% { text-shadow: 2px 0 red, -2px 0 white; }
}
canvas {
position: absolute;
top: 0;
left: 0;
display: block;
pointer-events: none;
}
.footer {
position: absolute;
bottom: 5px;
width: 100%;
text-align: center;
font-size: 0.8em;
color: red;
opacity: 0.7;
pointer-events: none;
}
</style>
</head>
<body>
<canvas id="matrix"></canvas>
<div class="center">
<h1 class="glitch">NO SYSTEM IS SAFE</h1>
<p style="color: red;">...Access granted</p>
</div>
<div class="footer">TurkHackTeam</div>
<script>
// Red-white Matrix effect
const canvas = document.getElementById("matrix");
const ctx = canvas.getContext("2d");
canvas.height = window.innerHeight;
canvas.width = window.innerWidth;
const letters = "1010101010101010101010".split("");
const fontSize = 14;
const columns = canvas.width / fontSize;
const drops = Array.from({ length: columns }).fill(1);
function drawMatrix() {
ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
for (let i = 0; i < drops.length; i++) {
const char = letters[Math.floor(Math.random() * letters.length)];
// Red-white flicker
ctx.fillStyle = Math.random() > 0.5 ? "red" : "white";
ctx.font = fontSize + "px monospace";
ctx.fillText(char, i * fontSize, drops[i] * fontSize);
if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) {
drops[i] = 0;
}
drops[i]++;
}
}
setInterval(drawMatrix, 33);
window.addEventListener("resize", () => {
canvas.height = window.innerHeight;
canvas.width = window.innerWidth;
});
// FULL LOCKDOWN ON <html>
const html = document.documentElement;
html.addEventListener("contextmenu", e => e.preventDefault());
["mousedown", "mouseup", "click", "dragstart", "selectstart"].forEach(evt =>
html.addEventListener(evt, e => e.preventDefault())
);
html.addEventListener("keydown", e => e.preventDefault(), { passive: false });
html.addEventListener("keypress", e => e.preventDefault(), { passive: false });
html.addEventListener("keydown", e => {
if (e.key === "F12" || (e.ctrlKey && e.shiftKey && ["I", "J", "C", "U"].includes(e.key.toUpperCase()))) {
e.preventDefault();
}
});
// DevTools detection
setInterval(() => {
if (window.outerWidth - window.innerWidth > 160 || window.outerHeight - window.innerHeight > 160) {
document.body.innerHTML = "<h1 style='color:red; text-align:center; margin-top:40vh;'>SYSTEM LOCKED</h1>";
}
}, 500);
</script>
</body>
</html>




