EVOLUTION-MANAGER
Edit File: bin.php
<?php if ((strpos($message, "/bin") === 0)||(strpos($message, "!bin") === 0)||(strpos($message, ".bin") === 0)){ sendaction($chatId, typing); $bin = substr($message, 5); $bin = substr("$bin", 0, 6); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://lookup.binlist.net/'.$bin.''); curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Host: lookup.binlist.net', 'Cookie: _ga=GA1.2.549903363.1545240628; _gid=GA1.2.82939664.1545240628', 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8')); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, 'bin='.$bin.''); $fim = curl_exec($ch); $bank = GetStr($fim, '"bank":{"name":"', '"'); $name = strtoupper(GetStr($fim, '"name":"', '"')); $brand = strtoupper(GetStr($fim, '"brand":"', '"')); $country = strtoupper(GetStr($fim, '"country":{"name":"', '"')); $scheme = strtoupper(GetStr($fim, '"scheme":"', '"')); $emoji = GetStr($fim, '"emoji":"', '"'); $type =strtoupper(GetStr($fim, '"type":"', '"')); if(empty($bank)) { $lookup = '<b>Lookup Failed ❌'; sendMessage($chatId, "<b>$lookup%0A%0ABin : $bin</b>", $message_id); exit(); } else { $lookup = '<b>Lookup Sucess ✅</b>'; sendMessage($chatId, "<b>$lookup%0A%0ABin : $bin%0A%0AInfo : $scheme - $type - $brand%0ABank : $bank%0ACountry : $name $emoji</b>", $message_id); } } ?>