forum.coppermine-gallery.net

No Support => Announcements => Topic started by: phill104 on May 19, 2009, 11:57:31 pm

Title: cpg1.4.23 Security release - upgrade mandatory!
Post by: phill104 on May 19, 2009, 11:57:31 pm
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.4.22 or older update to this latest version as soon as possible.

How to update:
Users running versions prior to 1.4.23 should update immediately by downloading (http://downloads.sourceforge.net/coppermine/cpg1.4.23.zip) the latest version from the download page (http://sourceforge.net/project/showfiles.php?group_id=89658) and following the upgrade steps in the documentation (http://coppermine.svn.sourceforge.net/viewvc/coppermine/trunk/cpg1.4.x/docs/index.htm#upgrade).

For those who want to apply the vulnerability fix manually (not recommended, this will fix the security issue only) to their Coppermine installation, the following files have been modified.

Open - ./include/init.inc.php

Find

Code: [Select]
if (ini_get('register_globals') == '1' || strtolower(ini_get('register_globals')) == 'on') {
    $register_globals_flag = true;
} else {
    $register_globals_flag = false;
}

and below it add


Code: [Select]
if (is_array($GLOBALS)) {
        foreach ($GLOBALS as $key => $value) {
                if (!in_array($key, $keysToSkip) && isset($$key) && $register_globals_flag) unset($$key);
        }
}

Open - ./db_input.php

Find

Code: [Select]
$password = $_POST['alb_password'];
and replace with

Code: [Select]
$password = addslashes($_POST['alb_password']);
Finally open ./displayecard.php

Find and remove completely the following.

Code: [Select]
// attempt to obtain full link from db if ecard logging enabled and min 12 chars of data is provided and only 1 match
if ((!is_array($data)) && $CONFIG['log_ecards'] && (strlen($_GET['data']) > 12)) {
        $result = cpg_db_query("SELECT link FROM {$CONFIG['TABLE_ECARDS']} WHERE link LIKE '{$_GET['data']}%'");
        if (mysql_num_rows($result) === 1) {
                $row = mysql_fetch_assoc($result);
                $data = @unserialize(@base64_decode($row['link']));
        }
}


Support:
If you have problems with this update, please use the Update support board (http://forum.coppermine-gallery.net/index.php?board=59.0). Do not post your issues to this announcement thread - your post will be deleted without notice.

Why was cpg1.4.23 released?
The release covers a recently discovered vulnerability that allows (if unpatched) a user to launch an SQL Injection (http://en.wikipedia.org/wiki/SQL_injection) (thread (http://forum.coppermine-gallery.net/index.php/topic,59542.0.html)).

Additionally, cpg1.4.23 includes fixes for the following non-security related issues:

Thanks to Nibbler (http://forum.coppermine-gallery.net/index.php?action=profile;u=941) for coming up with the fix, and thanks to breath (http://forum.coppermine-gallery.net/index.php?action=profile;u=66460) for informing us of the problem. Finally, thanks to girex for discovering the vulnerability and letting the public know.


Thanks,
The Coppermine Team
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: François Keller on May 21, 2009, 10:10:16 pm
Announcement thread in french (http://forum.coppermine-gallery.net/index.php/topic,59581.0.html)
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: JustHer on May 22, 2009, 04:07:53 pm
Download link isn't working for me...  ???
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: Αndré on May 22, 2009, 04:10:50 pm
It's because sourceforge.net isn't currently available. Please try again later.
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: JustHer on May 22, 2009, 04:16:30 pm
Ah okay, thanks! :) My galleries were all hacked, so I'm just eager to have it upgraded.

Cheers :)
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: JPiacentino on May 22, 2009, 04:33:49 pm
Just tried to upgrade. Made it through the DB update stage, then it appears I am locked out.
Tried it twice. Then went back to 1.4.22 and all is working.

Never had this problem before.

What should I look for?

Joe P., Jr.
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: Fabricio Ferrero on May 22, 2009, 05:53:59 pm
What should I look for?
Board rules in first place: Don't clutter announcement threads (http://forum.coppermine-gallery.net/index.php/topic,55415.msg270634.html#msg270634)



Locking.
Title: Re: cpg1.4.23 Security release - upgrade mandatory!
Post by: Joachim Müller on May 23, 2009, 04:27:56 pm
What should I look for?
In fact, you should read the thread you're replying to:
If you have problems with this update, please use the Update support board (http://forum.coppermine-gallery.net/index.php?board=59.0). Do not post your issues to this announcement thread - your post will be deleted without notice.
Not reading the thread you're replying to just shows others that you're a lazy person. It gets less likely that supporters are willing to look into your issues. Why on earth does each and every announcement thread have to be locked because of silly people like you?