Toplam 1 Sayfa Yeni Duyuru/Kampanya var
![]() |
<!DOCTYPE html> <html lang="tr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hacklendiniz!</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Courier New', monospace; background: #000 url('https://images.unsplash.com/photo-1544654803-b69140b285d1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center fixed; background-size: cover; color: #00ff00; min-height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; } body::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1; } .hack-container { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 90%; width: 600px; } .hack-box { background: rgba(0, 0, 0, 0.9); border: 3px solid #00ff00; border-radius: 15px; padding: 3rem 2rem; box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, inset 0 0 20px rgba(0, 255, 0, 0.3); animation: glow 2s ease-in-out infinite alternate; position: relative; overflow: hidden; } .hack-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent); animation: scan 3s linear infinite; } .hack-title { font-size: 2.5rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 3px; text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; animation: flicker 1.5s infinite alternate; } .hack-message { font-size: 1.8rem; line-height: 1.4; margin-bottom: 2rem; text-shadow: 0 0 5px #00ff00; } .team-name { color: #ff0000; font-weight: bold; text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; animation: red-flicker 2s infinite alternate; } .warning { font-size: 1rem; color: #ffff00; margin-top: 2rem; text-shadow: 0 0 5px #ffff00; } .binary-rain { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; } .binary-digit { position: absolute; color: rgba(0, 255, 0, 0.3); font-size: 14px; animation: fall linear infinite; } @keyframes glow { from { box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, inset 0 0 20px rgba(0, 255, 0, 0.3); } to { box-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00, inset 0 0 30px rgba(0, 255, 0, 0.5); } } @keyframes flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; opacity: 1; } 20%, 24%, 55% { text-shadow: none; opacity: 0.8; } } @keyframes red-flicker { 0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000; opacity: 1; } 20%, 24%, 55% { text-shadow: none; opacity: 0.8; } } @keyframes scan { 0% { transform: rotate(0deg) translate(-25%, -25%); } 100% { transform: rotate(360deg) translate(-25%, -25%); } } @keyframes fall { to { transform: translateY(100vh); } } /* Mobil uyumluluk */ @media (max-width: 768px) { .hack-title { font-size: 2rem; } .hack-message { font-size: 1.4rem; } .hack-box { padding: 2rem 1rem; } .hack-container { padding: 1rem; } } @media (max-width: 480px) { .hack-title { font-size: 1.6rem; } .hack-message { font-size: 1.2rem; } .warning { font-size: 0.9rem; } } </style> </head> <body> <div class="binary-rain" id="binaryRain"></div> <div class="hack-container"> <div class="hack-box"> <h1 class="hack-title">⚠ Uyarı ⚠</h1> <div class="hack-message"> U HACKED BY <span class="team-name">BASH TEAM</span><br> U SAY GOODBYE YOUR WEB SITE </div> <div class="warning"> Sistem güvenliği ihlal edilmiştir. Tüm veriler şifrelenmiştir. </div> </div> </div> <script> // Binary rain efekti function createBinaryRain() { const binaryRain = document.getElementById('binaryRain'); const digits = '0101010101010101'; for (let i = 0; i < 50; i++) { const digit = document.createElement('div'); digit.className = 'binary-digit'; digit.textContent = digits; digit.style.left = Math.random() * 100 + 'vw'; digit.style.animationDuration = (Math.random() * 10 + 5) + 's'; digit.style.animationDelay = Math.random() * 5 + 's'; binaryRain.appendChild(digit); } } // Titreşim efekti function addGlitchEffect() { const box = document.querySelector('.hack-box'); setInterval(() => { if (Math.random() > 0.7) { box.style.transform = `translate(${Math.random() * 4 - 2}px, ${Math.random() * 4 - 2}px)`; setTimeout(() => { box.style.transform = 'translate(0, 0)'; }, 100); } }, 300); } // Sayfa yüklendiğinde efektleri başlat window.addEventListener('load', function() { createBinaryRain(); addGlitchEffect(); // Klavye dinleme (opsiyonel) document.addEventListener('keydown', function(e) { if (e.key === 'Escape') { document.body.style.opacity = '0.8'; setTimeout(() => { document.body.style.opacity = '1'; }, 200); } }); }); </script> </body> </html>
1