관리-도구
편집 파일: readme.html
<!DOCTYPE html> <html lang="tr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>HACKED VİS4JA BY ON4RS</title> <style> body { background-color: black; color: lime; font-family: "Courier New", Courier, monospace; text-align: center; margin-top: 50px; overflow: hidden; } h1 { font-size: 50px; position: relative; animation: slide 5s infinite; } @keyframes slide { 0% { left: -100%; } 50% { left: 0%; } 100% { left: 100%; } } h2 { color: red; font-size: 20px; margin-top: 10px; } .video-container { margin-top: 30px; } .image-container { margin-top: 30px; } /* Yan taraflardaki terminal yazısı */ .terminal-left, .terminal-right { position: fixed; top: 0; width: 200px; height: 100%; color: lime; font-size: 14px; line-height: 1.5; white-space: pre-wrap; overflow: hidden; pointer-events: none; opacity: 0.6; } .terminal-left { left: 0; padding-left: 10px; animation: scrollLeft 10s linear infinite; } .terminal-right { right: 0; padding-right: 10px; animation: scrollRight 10s linear infinite; } @keyframes scrollLeft { 0% { transform: translateY(100%); } 100% { transform: translateY(-100%); } } @keyframes scrollRight { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } } </style> </head> <body> <h1>HACKED VİS4JA BY ON4RS</h1> <h2>Falan Filan Diyordunuz :)</h2> <!-- Video Ekleme --> <div class="video-container"> <iframe width="560" height="315" src="https://www.youtube.com/embed/pVQL0WMWQn8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> </div> <!-- Resim Ekleme --> <div class="image-container"> <img src="https://hizliresim.com/shk8o0a" alt="Hacked Image" width="400" height="300"> </div> <!-- Sol taraf terminal yazısı --> <div class="terminal-left"> root@server:~# Initializing...<br> root@server:~# Scanning ports...<br> root@server:~# Establishing connection...<br> root@server:~# Downloading payload...<br> root@server:~# Injecting code...<br> root@server:~# Access granted.<br> root@server:~# System compromised.<br> root@server:~# Encrypting files...<br> root@server:~# Hack complete.<br> </div> <!-- Sağ taraf terminal yazısı --> <div class="terminal-right"> $ sudo root access...<br> $ ls -la /home/target<br> $ cat sensitive_info.txt<br> $ Downloading sensitive_info.txt...<br> $ echo "Accessing system resources"<br> $ Connection to external server...<br> $ Sending data...<br> $ Terminating process.<br> $ Exiting system.<br> </div> </body> </html>