!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/libraries/classes/Server/   drwxr-xr-x
Free 13.21 GB of 57.97 GB (22.79%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Select.php (3.95 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Code for displaying server selection
 *
 * @package PhpMyAdmin
 */
namespace PhpMyAdmin\Server;

use 
PhpMyAdmin\Url;
use 
PhpMyAdmin\Util;

/**
 * PhpMyAdmin\Server\Select class
 *
 * @package PhpMyAdmin
 */
class Select
{
    
/**
     * Renders the server selection in list or selectbox form, or option tags only
     *
     * @param boolean $not_only_options whether to include form tags or not
     * @param boolean $omit_fieldset    whether to omit fieldset tag or not
     *
     * @return string
     */
    
public static function render($not_only_options$omit_fieldset)
    {
        
$retval '';

        
// Show as list?
        
if ($not_only_options) {
            
$list $GLOBALS['cfg']['DisplayServersList'];
            
$not_only_options =! $list;
        } else {
            
$list false;
        }

        if (
$not_only_options) {
            
$retval .= '<form method="post" action="'
                
Util::getScriptNameForOption(
                    
$GLOBALS['cfg']['DefaultTabServer'], 'server'
                
)
                . 
'" class="disableAjax">';

            if (! 
$omit_fieldset) {
                
$retval .= '<fieldset>';
            }

            
$retval .= Url::getHiddenFields(array());
            
$retval .= '<label for="select_server">'
                
__('Current server:') . '</label> ';

            
$retval .= '<select name="server" id="select_server" class="autosubmit">';
            
$retval .= '<option value="">(' __('Servers') . ') ...</option>' "\n";
        } elseif (
$list) {
            
$retval .= __('Current server:') . '<br />';
            
$retval .= '<ul id="list_server">';
        }

        foreach (
$GLOBALS['cfg']['Servers'] as $key => $server) {
            if (empty(
$server['host'])) {
                continue;
            }

            if (!empty(
$GLOBALS['server']) && (int) $GLOBALS['server'] === (int) $key) {
                
$selected 1;
            } else {
                
$selected 0;
            }
            if (!empty(
$server['verbose'])) {
                
$label $server['verbose'];
            } else {
                
$label $server['host'];
                if (!empty(
$server['port'])) {
                    
$label .= ':' $server['port'];
                }
            }
            if (! empty(
$server['only_db'])) {
                if (! 
is_array($server['only_db'])) {
                    
$label .= ' - ' $server['only_db'];
                    
// try to avoid displaying a too wide selector
                
} elseif (count($server['only_db']) < 4) {
                    
$label .= ' - ' implode(', '$server['only_db']);
                }
            }
            if (!empty(
$server['user']) && $server['auth_type'] == 'config') {
                
$label .= '  (' $server['user'] . ')';
            }

            if (
$list) {
                
$retval .= '<li>';
                if (
$selected) {
                    
$retval .= '<strong>' htmlspecialchars($label) . '</strong>';
                } else {

                    
$retval .= '<a class="disableAjax item" href="'
                        
Util::getScriptNameForOption(
                            
$GLOBALS['cfg']['DefaultTabServer'], 'server'
                        
)
                        . 
Url::getCommon(array('server' => $key))
                        . 
'" >' htmlspecialchars($label) . '</a>';
                }
                
$retval .= '</li>';
            } else {
                
$retval .= '<option value="' $key '" '
                    
. ($selected ' selected="selected"' '') . '>'
                    
htmlspecialchars($label) . '</option>' "\n";
            }
        } 
// end while

        
if ($not_only_options) {
            
$retval .= '</select>';
            if (! 
$omit_fieldset) {
                
$retval .= '</fieldset>';
            }
            
$retval .= '</form>';
        } elseif (
$list) {
            
$retval .= '</ul>';
        }

        return 
$retval;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0072 ]--