!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

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 83.32 GB of 96.73 GB (86.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Select.php (4.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Code for displaying server selection
 */

declare(strict_types=1);

namespace 
PhpMyAdmin\Server;

use 
PhpMyAdmin\Url;
use 
PhpMyAdmin\Util;
use function 
count;
use function 
htmlspecialchars;
use function 
implode;
use function 
is_array;
use function 
strpos;

/**
 * Displays the MySQL servers choice form
 */
class Select
{
    
/**
     * Renders the server selection in list or selectbox form, or option tags only
     *
     * @param bool $not_only_options whether to include form tags or not
     * @param bool $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([]);
            
$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 {
                    
$scriptName Util::getScriptNameForOption(
                        
$GLOBALS['cfg']['DefaultTabServer'],
                        
'server'
                    
);
                    
$retval .= '<a class="disableAjax item" href="'
                        
$scriptName
                        
Url::getCommon(['server' => $key], strpos($scriptName'?') === false '?' '&')
                        . 
'" >' htmlspecialchars($label) . '</a>';
                }
                
$retval .= '</li>';
            } else {
                
$retval .= '<option value="' $key '" '
                    
. ($selected ' selected="selected"' '') . '>'
                    
htmlspecialchars($label) . '</option>' "\n";
            }
        }

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

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0045 ]--