Code lọc CC trùng, Phân loại CC

Thấy anh em dạo này nổi nên vấn đề lọc trùng cc.
Trước đây vấn đề này được giải quyết rồi. Mình có code này do Winjin code và mình edit. Code ổn định.
Chức năng:

  • Lọc trùng : cc trùng sẽ auto bị remove. Ko cần config vị trí cc number
  • Phân loại CC
  • Tìm cc theo bin


Screen Shot:

This image has been resized. Click this bar to view the full image. The original image is sized 776×550.

This image has been resized. Click this bar to view the full image. The original image is sized 850×747.

Download:

Code:
http://www.mediafire.com/download.php?eg1zdtqzwnz

Hoặc copy code dưới đây:

PHP Code:
<?php
/*
+ Coded by: Neverbestboy & WinJin92 (Edited by Gaconit)
*/
function findcc($str){
$str=str_replace(" ","",$str);
for(
$i=0;$i<=strlen($str);$i++){
if(
is_numeric($str[$i])){
$ccNum.=$str[$i];
if(
strlen($ccNum)>14){
return
$ccNum;
break;
};
}
else
$ccNum='';
}

}
if($_POST['concaocao']){
if(
strpos($_POST['concaocao'], '.txt')){
// Use TXT FILE
$data = file_get_contents($_POST['concaocao']);
$data = explode(chr(13).chr(10),$data);
}
else{
/* USE POST WAY */
$data = $_POST['concaocao'];
$data = explode("\r\n",$data); // Work only in Window
echo '<b>Total: </b>'.count($data).'<hr>';
}
foreach(
$data as $key => $value)
{
$ccNum=findcc($value);
if(!
$check["$ccNum"]){
$check["$ccNum"]    = 1;

if($_POST['binfilter']){
$type = substr($ccNum,0,strlen($_POST['binfilter']));
if(
$type == $_POST['binfilter'])
{
$cc['bin'][]    =    array($value);
}
}
else
{
$type = substr($ccNum,0,1);
if(
$type == 3)
{
$cc['amex'][]    =    array($value);
}
elseif(
$type == 4)
{
$cc['visa'][]    =    array($value);
}
elseif(
$type == 5)
{
$cc['master'][]    =    array($value);
}
elseif(
$type == 6)
{
$cc['discover'][]    =    array($value);
}
}
$html.="$value\r\n";
$nhtml++;
}

}
$cols = '100%';
$rows = '5';
if(!
$_POST['binfilter']){
echo
'<pre><b>Amex: </b>'.count($cc['amex']).'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
if(
count($cc['amex']))foreach($cc['amex'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';
//
echo '<pre><b>Visa: </b>'.count($cc['visa']).'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
if(
count($cc['visa']))foreach($cc['visa'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';
//
echo '<pre><b>Master: </b>'.count($cc['master']).'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
if(
count($cc['master']))foreach($cc['master'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';
//
echo '<pre><b>Discover: </b>'.count($cc['discover']).'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
if(
count($cc['discover']))foreach($cc['discover'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';
}
else{
echo
'<pre><b>BIN: </b>'.count($cc['bin']).'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
foreach(
$cc['bin'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';
}
echo
'<pre><b>All with order:</b>'.$nhtml.'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
if(
count($cc['amex']))foreach($cc['amex'] as $key=>$value){
echo
$value[0]."\r\n";
}
if(
count($cc['visa']))foreach($cc['visa'] as $key=>$value){
echo
$value[0]."\r\n";
}
if(
count($cc['master']))foreach($cc['master'] as $key=>$value){
echo
$value[0]."\r\n";
}
if(
count($cc['discover']))foreach($cc['discover'] as $key=>$value){
echo
$value[0]."\r\n";
}
echo
'</textarea></pre>';

echo '<pre><b>All: </b>'.$nhtml.'<Br><textarea cols="'.$cols.'" rows="'.$rows.'">';
echo
$html;
echo
'</textarea></pre>';
}
else{
?>
<html>
<title>CC Filter - WinJin92</title>
<center><b>Coded by: WinJin92 & Helper: Neverbestboy [Ver: 2] (Edited by gaconit)</b></center>
<form method="POST" action="?">
<textarea name="concaocao" cols="80" rows="20"></textarea><br>
<b>Warning: </b> Fill "filename" to include cc list from "filename" (cc.txt) Or Paste you CC list to textarea above!<br>
<input type="text" name="binfilter" size="15" value="0"> <b>0</b> is disable BIN Filter!<br>
<br><input type="submit" value="Submit">
</form>
</html>
<? } ?>



This entry was posted on Friday, December 11th, 2009 and is filed under Hack. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply

You must be logged in to post a comment.