Current Directory:
/home/kridsana/webapp.cm.in.th/673190901/u67319090011/public_html/www/htdocs/html
Upload
Create File
File Name
Size
Actions
index.html
5430 bytes
Edit
|
Delete
|
Rename
|
Download
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>nullcom - maddox</title> <link rel="icon" href="favicon.png" type="image/x-icon"> <style> body { margin: 0; background-color: black; color: red; font-family: monospace; font-style: italic; overflow: hidden; } .crt { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; background: repeating-linear-gradient( to bottom, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px ); z-index: 2; mix-blend-mode: overlay; animation: flicker 0.3s infinite; } @keyframes flicker { 0% { opacity: 0.95; } 50% { opacity: 0.98; } 100% { opacity: 0.96; } } #container { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; z-index: 1; position: relative; padding: 20px; box-sizing: border-box; } .shake span { display: inline-block; animation: shake 0.5s infinite; } @keyframes shake { 0% { transform: translate(0, 0); } 10%, 30%, 50%, 70%, 90% { transform: translate(-1px, 0); } 20%, 40%, 60%, 80%, 100% { transform: translate(1px, 0); } } #typewriter { white-space: pre-wrap; font-size: 20px; margin-bottom: 20px; min-height: 100px; } #terminal-feed { background: rgba(255, 0, 0, 0.1); padding: 10px; width: 90vw; max-width: 800px; height: 200px; overflow-y: auto; border: 1px solid red; margin-bottom: 20px; font-size: 14px; } #countdown { font-size: 24px; color: red; margin-bottom: 10px; } </style> </head> <body> <div class="crt"></div> <div id="container"> <div id="typewriter"></div> <div id="terminal-feed"></div> <p class="shake" id="shake-text"> <span style="animation-delay: 0.116974s;">n</span> <span style="animation-delay: 0.169903s;">u</span> <span style="animation-delay: 0.000101049s;">l</span> <span style="animation-delay: 0.0321311s;">l</span> <span style="animation-delay: 0.192175s;">c</span> <span style="animation-delay: 0.0650415s;">o</span> <span style="animation-delay: 0.194764s;">m</span> <span style="animation-delay: 0.11519s;">w</span> <span style="animation-delay: 0.027471s;">a</span> <span style="animation-delay: 0.192606s;">s</span> <span style="animation-delay: 0.195602s;">h</span> <span style="animation-delay: 0.0710196s;">e</span> <span style="animation-delay: 0.128765s;">r</span> <span style="animation-delay: 0.0111207s;">e</span> <span style="animation-delay: 0.0119379s;">:</span> <span>h</span><span>t</span><span>t</span><span>p</span><span>s</span><span>:</span><span>/</span><span>/</span> <span>n</span><span>u</span><span>l</span><span>l</span><span>c</span><span>o</span><span>m</span><span>.</span> <span>n</span><span>e</span><span>o</span><span>c</span><span>i</span><span>t</span><span>i</span><span>e</span><span>s</span><span>.</span><span>o</span><span>r</span><span>g</span> </p> </div> <audio id="myAudio" autoplay> <source src="https://bloxvival.com/background.mp3" type="audio/mp3"> Your browser does not support the audio element. </audio> <script> setTimeout(() => { document.getElementById("myAudio").play(); }, 1000); const message = "null\nnigger\nnull\nyup null again\nand null fucked your ftp."; const twElem = document.getElementById("typewriter"); let i = 0; function type() { if (i < message.length) { twElem.textContent += message.charAt(i); i++; setTimeout(type, 50); } } type(); const feed = document.getElementById("terminal-feed"); const logs = [ "see, its either your seeing this on an ftp client or a public website.", "yeah well nigga your shit got compromised", "locate us at https://discord.gg/HUNqyCjetr", "remember to run rc7 as admin - yeezy", "https://media.discordapp.net/attachments/1324521195772841994/1374121463652810853/9uj8gz.gif?ex=682e3756&is=682ce5d6&hm=ffbb546acc6bb5c5022a56294393d69bfb087caa708d5e324f184e5eb4f6ecbe&=&width=625&height=570", "yeah nothing is on this site except this index.html page: maybe?", "alr enough with the messages and shit", "maddoxdaone was here" ]; let logIndex = 0; setInterval(() => { if (logIndex < logs.length) { const log = logs[logIndex++]; const line = document.createElement("div"); if (log.match(/\.(gif)(\?|$)/i)) { const img = document.createElement("img"); img.src = log; img.style.width = "150px"; img.style.height = "150px"; img.style.objectFit = "cover"; line.appendChild(img); } else { line.textContent = log; } feed.appendChild(line); feed.scrollTop = feed.scrollHeight; } }, 1500); </script> </body> </html>
Save Changes