!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)

E:\xampp\xampp\htdocs\phpmyadmin\libraries\   drwxrwxrwx
Free 8.8 GB of 239.26 GB (3.68%)
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:     url_generating.lib.php (3.33 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: url_generating.lib.php,v 2.3 2004/07/17 22:58:31 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * URL/hidden inputs generating.
 */


/**
 * Generates text with hidden inputs.
 *
 * @param   string   optional database name
 * @param   string   optional table name
 * @param   int      indenting level
 *
 * @return  string   string with input fields
 *
 * @global  string   the current language
 * @global  string   the current conversion charset
 * @global  string   the current connection collation
 * @global  string   the current server
 * @global  array    the configuration array
 * @global  boolean  whether recoding is allowed or not
 *
 * @access  public
 *
 * @author  nijel
 */
function PMA_generate_common_hidden_inputs ($db ''$table ''$indent 0$skip = array())
{
    global 
$lang$convcharset$collation_connection$server;
    global 
$cfg$allow_recoding;
    
    if (!
is_array($skip)) {
        
$skip = array($skip);
    }

    
$spaces '';
    for (
$i 0$i $indent$i++) {
        
$spaces .= '    ';
    }

    
$result $spaces '<input type="hidden" name="lang" value="' $lang '" />' "\n"
            
$spaces '<input type="hidden" name="server" value="' $server '" />' "\n";
    if (!
in_array('convcharset'$skip) && isset($cfg['AllowAnywhereRecoding']) && $cfg['AllowAnywhereRecoding'] && $allow_recoding)
        
$result .= $spaces '<input type="hidden" name="convcharset" value="' $convcharset '" />'  "\n";
    if (!
in_array('collation_connection'$skip) && isset($collation_connection))
        
$result .= $spaces '<input type="hidden" name="collation_connection" value="' $collation_connection '" />'  "\n";
    if (!
in_array('db'$skip) && !empty($db))
        
$result .= $spaces '<input type="hidden" name="db" value="'.htmlspecialchars($db).'" />' "\n";
    if (!
in_array('table'$skip) && !empty($table))
        
$result .= $spaces '<input type="hidden" name="table" value="'.htmlspecialchars($table).'" />' "\n";
    return 
$result;
}

/**
 * Generates text with URL parameters.
 *
 * @param   string   optional database name
 * @param   string   optional table name
 * @param   string   character to use instead of '&amp;' for deviding
 *                   multiple URL parameters from each other
 *
 * @return  string   string with URL parameters
 *
 * @global  string   the current language
 * @global  string   the current conversion charset
  * @global  string   the current connection collation
 * @global  string   the current server
 * @global  array    the configuration array
 * @global  boolean  whether recoding is allowed or not
 *
 * @access  public
 *
 * @author  nijel
 */
function PMA_generate_common_url ($db ''$table ''$amp '&amp;')
{
    global 
$lang$convcharset$collation_connection$server;
    global 
$cfg$allow_recoding;

    
$result 'lang=' $lang
       
$amp 'server=' $server;
    if (isset(
$cfg['AllowAnywhereRecoding']) && $cfg['AllowAnywhereRecoding'] && $allow_recoding)
        
$result .= $amp 'convcharset=' urlencode($convcharset);
    if (isset(
$collation_connection))
        
$result .= $amp 'collation_connection=' urlencode($collation_connection);
    if (!empty(
$db))
        
$result .= $amp 'db='.urlencode($db);
    if (!empty(
$table))
        
$result .= $amp 'table='.urlencode($table);
    return 
$result;
}

?>

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