PATH: /home/hwyuvbry/www
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 .htaccess
↓
X
📁 .well-known/
X
📁 app/
X
📁 assets/
X
📄 ayah.mp3
↓
X
📁 bank/
X
📄 bantuan.php
↓
X
📄 callback.php
↓
X
📁 casino/
X
📁 cgi-bin/
X
📁 classes/
X
📁 config/
X
📄 error_log
↓
X
📄 event.php
↓
X
📄 favicon.png
↓
X
📁 function/
X
📁 gameplay/
X
📁 images/
X
📄 index hack.php
↓
X
📄 index.php
↓
X
📁 kerbau/
X
📄 login-proses.php
↓
X
📁 logs/
X
📁 m/
X
📁 mobilecontent/
X
📄 nexus_config.php
↓
X
📁 page/
X
📄 peraturan.php
↓
X
📄 privasi.php
↓
X
📄 promosi.php
↓
X
📄 register-ref.php
↓
X
📄 register.php
↓
X
📁 rtp/
X
📄 tentang.php
↓
X
📁 tools/
X
📄 update-game.php
↓
X
📁 upload/
X
SAVING...
BERHASIL DIUBAH!
EDITING: index hack.php
<!DOCTYPE html> <html lang="id"> <head> <meta charset="UTF-8"> <title>SISTEM CRITICAL - KERUSAKAN TERDETEKSI</title> <style> body, html { margin: 0; padding: 0; background: black; color: #0f0; font-family: 'Courier New', monospace; overflow: hidden; height: 100vh; } /* Canvas untuk latar belakang Matrix */ #matrix-bg { position: fixed; top: 0; left: 0; z-index: 1; opacity: 0.3; } /* Container Utama */ .desktop { position: relative; z-index: 2; width: 100vw; height: 100vh; display: flex; justify-content: center; align-items: center; } /* Jendela Terminal Kecil (Floating) */ .terminal { position: absolute; background: rgba(0, 20, 0, 0.85); border: 1px solid #0f0; box-shadow: 0 0 10px rgba(0, 255, 0, 0.2); font-size: 11px; padding: 5px; overflow: hidden; pointer-events: none; } /* Alarm Pusat */ .central-alarm { width: 500px; background: rgba(40, 0, 0, 0.9); border: 4px double #f00; padding: 30px; text-align: center; z-index: 10; box-shadow: 0 0 50px #f00; animation: alert-pulse 0.8s infinite; } .central-alarm h1 { color: #ff0; font-size: 2.5rem; margin: 0; text-shadow: 0 0 10px #f00; } .central-alarm .status { color: #fff; font-weight: bold; font-size: 1.2rem; margin: 15px 0; border-bottom: 2px solid #f00; display: inline-block; } .progress-bar { width: 100%; height: 20px; border: 1px solid #0f0; margin-top: 15px; position: relative; } .progress-fill { height: 100%; background: #f00; width: 0%; transition: width 0.3s; } /* Animasi */ @keyframes alert-pulse { 0% { transform: scale(1); box-shadow: 0 0 30px #f00; } 50% { transform: scale(1.02); box-shadow: 0 0 60px #f00; background: rgba(80, 0, 0, 0.9); } 100% { transform: scale(1); box-shadow: 0 0 30px #f00; } } .red-text { color: #f00; } </style> </head> <body> <canvas id="matrix-bg"></canvas> <div class="desktop" id="desktop"> <!-- Alarm Tengah --> <div class="central-alarm"> <h1 id="alert-title">⚠️ PERINGATAN ⚠️</h1> <div class="status">SISTEM TERETAS: ACCESS GRANTED</div> <p class="red-text" style="font-weight: bold;">DATA EXFILTRATION IN PROGRESS</p> <div id="target-info">TARGET: DATABASE_USERS_MAIN</div> <div class="progress-bar"> <div class="progress-fill" id="p-fill"></div> </div> <div id="p-text" style="margin-top: 5px;">COMPROMISED: 0%</div> </div> <!-- Terminal Jendela Otomatis akan muncul di sini via JS --> </div> <script> // 1. Matrix Background Effect const canvas = document.getElementById('matrix-bg'); const ctx = canvas.getContext('2d'); canvas.width = window.innerWidth; canvas.height = window.innerHeight; const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789$#@%&*()"; const fontSize = 14; const columns = canvas.width / fontSize; const drops = Array(Math.floor(columns)).fill(1); function drawMatrix() { ctx.fillStyle = "rgba(0, 0, 0, 0.05)"; ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = "#0f0"; ctx.font = fontSize + "px monospace"; for (let i = 0; i < drops.length; i++) { const text = chars.charAt(Math.floor(Math.random() * chars.length)); ctx.fillText(text, i * fontSize, drops[i] * fontSize); if (drops[i] * fontSize > canvas.height && Math.random() > 0.975) drops[i] = 0; drops[i]++; } } // 2. Simulasi Progress Peretasan let progress = 0; const pFill = document.getElementById('p-fill'); const pText = document.getElementById('p-text'); function updateHacking() { if (progress < 100) { progress += Math.random() * 1.5; if (progress > 100) progress = 100; pFill.style.width = progress + "%"; pText.innerText = `COMPROMISED: ${Math.floor(progress)}%`; setTimeout(updateHacking, 100); } else { document.getElementById('alert-title').innerText = "DONE: ALL DATA STOLEN"; document.getElementById('alert-title').style.color = "#fff"; } } // 3. Spawn Jendela Terminal Acak const desktop = document.getElementById('desktop'); const commands = [ "GET /admin/db_dump.sql HTTP/1.1", "Bypassing firewall node 7...", "DECRYPTING RSA-2048 KEY...", "ROOT_ACCESS: ENABLED", "Downloading users.db...", "Injecting shellcode at 0x88FF", "Wiping system logs...", "Cloning directory /etc/shadow" ]; function createTerminal() { const term = document.createElement('div'); term.className = 'terminal'; term.style.width = (150 + Math.random() * 200) + 'px'; term.style.height = (100 + Math.random() * 100) + 'px'; term.style.top = Math.random() * 80 + '%'; term.style.left = Math.random() * 80 + '%'; desktop.appendChild(term); setInterval(() => { const line = document.createElement('div'); line.innerText = "> " + commands[Math.floor(Math.random() * commands.length)]; term.appendChild(line); if (term.childNodes.length > 10) term.removeChild(term.firstChild); }, 500); } // Mulai Semua setInterval(drawMatrix, 50); updateHacking(); for(let i=0; i<6; i++) createTerminal(); // Buat 6 jendela terminal awal </script> </body> </html>
SIMPAN PERUBAHAN