PDA

View Full Version : phpBB 2.0.13 released - Critical Update *** UPDATE phpBB 2.0.14 released ***


admin
02-28-2005, 10:58 PM
PHPBB SECURITY BULLETIN
http://www.phpbb.com (http://www.phpbb.com/)
February 28th, 2005

http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=267563
Hi everyone,

phpBB Group announces the release of phpBB 2.0.13, the "Beware of the furries" edition. This release addresses two recent security exploits, one of them critical. They were reported a few days after .12 was released and no one is more annoyed than us, having to release a new version in such a short period of time.
Fortunately both fixes are easy and in each case just one line needs to be edited.

The first issue is critical (session handling allowing everyone gaining administrator rights) and we urge you to fix it on your forums as soon as possible:

Open includes/sessions.php

Find:
Code: if( $sessiondata['autologinid'] == $auto_login_key )
Replace with:
Code: if( $sessiondata['autologinid'] === $auto_login_key )


A second minor issue reported to bugtraq several days ago was the path disclosure bug in viewtopic.php which got fixed by applying the following steps:

Open viewtopic.php

Find:
Code: $message = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace('#\b(" . $highlight_match . ")\b#i', '<span style=\"color:#" . $theme['fontcolor3'] . "\"><b>\\\\1</b></span>', '\\0')", '>' . $message . '<'), 1, -1));
Replace with:
Code: $message = str_replace('\"', '"', substr(@preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "@preg_replace('#\b(" . $highlight_match . ")\b#i', '<span style=\"color:#" . $theme['fontcolor3'] . "\"><b>\\\\1</b></span>', '\\0')", '>' . $message . '<'), 1, -1));


As with all new releases we urge you to upgrade as soon as possible. You can of course find this download available on our downloads page (http://www.phpbb.com/downloads.php). As per usual three packages are available to simplify your upgrade.

tffnguy
04-18-2005, 10:47 AM
phpBB 2.0.14 is now up with a lot more patches. :rolleyes:

Chris
04-18-2005, 10:55 AM
tffnguy,

Thanks for the update!

Official release announcement here:
http://www.phpbb.com/phpBB/viewtopic.php?f=14&t=281963

Download here:
http://www.phpbb.com/downloads.php