관리-도구
편집 파일: GhostSystem.php
<?php // Você pode colocar código PHP aqui, se necessário ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ALERT! SITE HACKED!</title> <link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet"> <style> body { margin: 0; padding: 0; background-color: black; color: #00ffcc; font-family: 'Share Tech Mono', monospace; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; overflow: hidden; } h1 { font-size: 3em; color: red; text-shadow: 0 0 10px red; } p { font-size: 1.2em; margin: 15px 0; } .jutsu { color: orange; font-size: 1.5em; margin-top: 20px; text-shadow: 0 0 10px orange; } .author { color: #fff; margin-top: 40px; font-weight: bold; } .quote { margin-top: 50px; font-size: 1em; font-style: italic; color: gray; } .footer { position: absolute; bottom: 10px; font-size: 0.9em; color: darkred; } .glitch { animation: glitch 1s infinite; } @keyframes glitch { 0% { text-shadow: 2px 2px red, -2px -2px blue; } 25% { text-shadow: -2px 2px lime, 2px -2px cyan; } 50% { text-shadow: 2px -2px red, -2px 2px yellow; } 75% { text-shadow: -2px -2px magenta, 2px 2px white; } 100% { text-shadow: 2px 2px red, -2px -2px blue; } } img { margin-top: 30px; max-width: 300px; border: 2px solid #00ffcc; box-shadow: 0 0 10px #00ffcc; } </style> </head> <body> <h1 class="glitch">ALERT! SITE HACKED!</h1> <p>This site has been taken over by <strong>Ghostsll</strong>!<br>The path here wasn’t easy, but you made it. Now, there's no turning back...</p> <div class="jutsu">🔥 Katon: Goukakyuu no Jutsu! 🔥</div> <div class="author">Author: Ghostsll</div> <img src="https://wallpapers.com/images/high/sad-anime-background-vfp7wkh6hit8117z.webp" alt="Sad Anime" /> <div class="quote">"The shadows of the internet are vast, and those who can navigate them are few. But remember, there are always those watching from the dark."</div> <div class="footer">© Only God can save this lost world.</div> </body> </html>