File manager - Edit - /home/kridsana/webapp.cm.in.th/673190901/u67319090011/public_html/index.html
Back
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKED</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #0a0a0a; display: flex; justify-content: center; align-items: center; height: 100vh; font-family: 'Courier New', monospace; overflow: hidden; } .container { text-align: center; position: relative; z-index: 2; animation: pulse 2s ease-in-out infinite; } .glitch { font-size: 5rem; font-weight: bold; color: #00ff41; text-shadow: 0 0 20px #00ff41, 0 0 40px #00ff41, 0 0 80px #00ff41; letter-spacing: 8px; animation: glitch 1.5s infinite; position: relative; } .glitch::before, .glitch::after { content: "HACKED BY KHANKI SHEKH HASINA"; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.8; } .glitch::before { color: #ff0040; transform: translate(-3px, -3px); z-index: -1; animation: glitchShift 0.3s infinite alternate; } .glitch::after { color: #00aaff; transform: translate(3px, 3px); z-index: -2; animation: glitchShift 0.4s infinite alternate-reverse; } .sub { color: #00ff41; font-size: 1.5rem; margin-top: 20px; text-shadow: 0 0 15px #00ff41; letter-spacing: 4px; opacity: 0.8; animation: fadeBlink 3s infinite; } .binary { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; font-size: 14px; color: #00ff4133; line-height: 1.2; word-break: break-all; padding: 20px; } .scanline { position: fixed; top: 0; left: 0; width: 100%; height: 2px; background: #00ff41; opacity: 0.3; animation: scan 4s linear infinite; z-index: 3; box-shadow: 0 0 20px #00ff41; } @keyframes glitch { 0% { transform: scale(1); } 20% { transform: scale(1.02) skewX(-2deg); } 40% { transform: scale(1) skewX(2deg); } 60% { transform: scale(0.98) skewX(-1deg); } 80% { transform: scale(1.01) skewX(1deg); } 100% { transform: scale(1); } } @keyframes glitchShift { 0% { transform: translate(-5px, -5px); opacity: 0.7; } 100% { transform: translate(5px, 5px); opacity: 1; } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } } @keyframes fadeBlink { 0% { opacity: 0.4; } 50% { opacity: 1; } 100% { opacity: 0.4; } } @keyframes scan { 0% { top: 0; opacity: 0.5; } 50% { opacity: 0.1; } 100% { top: 100%; opacity: 0.5; } } .footer { position: fixed; bottom: 20px; left: 0; width: 100%; text-align: center; color: #00ff4166; font-size: 0.8rem; z-index: 2; font-family: 'Courier New', monospace; letter-spacing: 2px; } .symbols { position: fixed; font-size: 3rem; color: #00ff4111; z-index: 0; animation: floatSymbols 12s infinite linear; } @keyframes floatSymbols { 0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; } 50% { opacity: 0.3; } 100% { transform: translateY(-200px) rotate(360deg); opacity: 0; } } </style> </head> <body> <!-- Binary Background --> <div class="binary" id="binary"></div> <!-- Floating Symbols --> <div style="position:fixed;top:10%;left:5%;font-size:4rem;color:#00ff4111;z-index:0;">⛧</div> <div style="position:fixed;top:30%;right:8%;font-size:5rem;color:#00ff4111;z-index:0;animation:floatSymbols 14s infinite;">⚡</div> <div style="position:fixed;bottom:20%;left:10%;font-size:3.5rem;color:#00ff4111;z-index:0;animation:floatSymbols 10s infinite 2s;">⍟</div> <div style="position:fixed;bottom:40%;right:5%;font-size:4rem;color:#00ff4111;z-index:0;animation:floatSymbols 16s infinite 3s;">⌘</div> <!-- Scanline --> <div class="scanline"></div> <!-- Main Content --> <div class="container"> <div class="glitch"> HACKED </div> <div class="sub">by KHANKI SHEKH HASINA</div> <div style="margin-top:30px;color:#00ff4188;font-size:0.9rem;letter-spacing:2px;text-transform:uppercase;"> ◆ system compromised ◆ data extracted ◆ access revoked ◆ </div> <div style="margin-top:15px;color:#00ff4144;font-size:0.7rem;letter-spacing:4px;"> ALL YOUR BASE ARE BELONG TO US </div> </div> <div class="footer"> ● anonymous ● encrypted ● untraceable ● </div> <script> // ============================================================ // BINARY RAIN - GENERATES RANDOM BINARY STRINGS // ============================================================ (function binaryRain() { const el = document.getElementById('binary'); const chars = '01'; let output = ''; for (let i = 0; i < 2000; i++) { output += chars[Math.floor(Math.random() * chars.length)]; if (i % 40 === 0) output += '<br>'; } el.innerHTML = output; })(); // ============================================================ // ADD MORE FLOATING SYMBOLS DYNAMICALLY // ============================================================ (function addFloatingSymbols() { const symbols = ['⛧', '⚡', '⍟', '⌘', '⟳', '⏣', '⏤', '⍥', '⎈', '⏛']; for (let i = 0; i < 12; i++) { const span = document.createElement('div'); span.className = 'symbols'; span.textContent = symbols[Math.floor(Math.random() * symbols.length)]; span.style.left = Math.random() * 90 + '%'; span.style.top = Math.random() * 90 + '%'; span.style.fontSize = (Math.random() * 4 + 2) + 'rem'; span.style.animationDuration = (Math.random() * 10 + 8) + 's'; span.style.animationDelay = (Math.random() * 5) + 's'; document.body.appendChild(span); } })(); // ============================================================ // CONSOLE MESSAGE // ============================================================ console.log('%c HACKED BY KHANKI SHEKH HASINA ', 'background: #000; color: #00ff41; font-size: 20px; font-weight: bold; padding: 10px; border: 2px solid #00ff41;'); console.log('%c SYSTEM COMPROMISED - DATA EXFILTRATED ', 'background: #000; color: #ff0040; font-size: 14px; padding: 8px;'); console.log('%c THIS SITE HAS BEEN TAKEN OVER ', 'background: #000; color: #ffaa00; font-size: 14px; padding: 8px;'); // ============================================================ // FAKE TERMINAL OUTPUT IN CONSOLE // ============================================================ (function fakeConsoleOutput() { const messages = [ '[+] Initializing hack sequence...', '[+] Bypassing firewall...', '[+] Injecting payload...', '[+] Access granted...', '[+] Extracting database...', '[+] Downloading sensitive data...', '[+] Backdoor installed...', '[+] Session hijacked...', '[+] System compromised.', '[+] HACK COMPLETE.' ]; let idx = 0; const interval = setInterval(() => { if (idx < messages.length) { console.log('%c ' + messages[idx], 'color: #00ff41;'); idx++; } else { clearInterval(interval); } }, 600); })(); // ============================================================ // PREVENT RIGHT CLICK // ============================================================ document.addEventListener('contextmenu', e => e.preventDefault()); // ============================================================ // PREVENT SELECTION // ============================================================ document.addEventListener('selectstart', e => e.preventDefault()); // ============================================================ // DYNAMIC FAVICON // ============================================================ const favicon = document.createElement('link'); favicon.rel = 'icon'; favicon.href = 'data:image/svg+xml,' + encodeURIComponent('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">⛧</text></svg>'); document.head.appendChild(favicon); // ============================================================ // TITLE FLASHING // ============================================================ let titleState = 0; const titles = ['⛧ HACKED ⛧', 'SYSTEM DOWN', 'ACCESS DENIED', 'KHANKI SHEKH HASINA']; setInterval(() => { document.title = titles[titleState % titles.length]; titleState++; }, 1500); </script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.61 |
proxy
|
phpinfo
|
Settings