Skip to content Skip to sidebar Skip to footer

Paypal Valid checker srcipt



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

langsung aja ni source codenya


<?php
@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 "<head>
<style type='text/css'>body{background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-FnlPHFdZQUc0B7CMYo5qmZhyMPujppeZzCw_bkQRJigvTgJpGQcU9bnSwPVx6kfNBiS9rI8WLJDV69utBs0Gr__-h2c5DjZv0MEQUD5RBsmgYL6RJUBDc4k3YBoFr-T_AXbj87Ef0NDZ/s1600/hacker-creates-worldwide-map-of-vulnerable-devices.png)</style>

</style>
<title>Valid Email Checker</title>
</head><div align=\"center\"></center>";

$emails = $_POST['emails'];
print '<div id="form-container"> <form method="POST">

<p align="center"><font face="Times New Roman" size="6" color="ffffff">
www.cybersquads.com<br>Paypal Checker</font></p>

    <p><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
    <p><input class="submit-button" type="submit" value="Submit" name="B1"></p>
</form> </div>';
if (!empty($emails)) {
$emails = explode("\r\n", $emails);
$yes = 0;
$not = 0;
$inv = 0;
$count = 1;
print "<p align=\"left\"><font color=\"#ffffff\">Checking  <b>".count($emails)."</b> emails ....</font><br></p><p align=\"left\">";
foreach ( $emails as $email ) {
    $email = trim($email);
     print "<font color=\"#ffffff\"> $count .. Checking <b>".$email." ..... </font> </b>";
    $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&currency=USD&amount=10&amount_ccode=USD&submit.x=Continue',CURLOPT_FAILONERROR,TRUE);
            if(!strpos($_CheckAction, "region")) {
                print "<font size=\"3\" color=\"#006600\">Yes</font> <br>";
                $yes++;
                $vaild_yes .=$email."\n";
            }
        else {
            print "<font color=\"#FF0000\">NO</font><br>";
            $not++;
            $vaild_no .=$email."\n";
        }
    }
    else {
        print "<font color=\"#FF0000\">Invaild email</font><br>";
        $inv++;
        $invaild .=$email."\n";
}
}

print '<p><table border="0" width="100%">
   



         <tr>
        <td><p align="center"><font face="Times New Roman" size="4"><font color="#006600">PayPal emails</font> <b>(<font color="#006600"><b>'.$yes.'</b></font>)</b> </p></td>
        <td><p align="center"><font face="Times New Roman" size="4"><font color="#FF0000">Not PayPal emails</font> <b>(<font color="#FF0000">'.$not.'</font>)</b> </p> </td>
        <td><p align="center"><font face="Times New Roman" size="4"><font color="#FF0000">Invalid emails</font> <b>(<font color="#FF0000">'.$inv.'</font>)</b> </p> </td>
</tr>

    <tr>

   
   
   
          <td><div id="form-container1"><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></div></td>
        <td><div id="form-container1"><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></div></td>
        <td><div id="form-container1"><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></div></td>
    </tr>
</table></p>';
}

?><p>&nbsp;</p>
     


buka dengan txt dan simpan dengan extensi .php


thanks

Post a Comment for "Paypal Valid checker srcipt"