!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/Controllers/Table/   drwxr-xr-x
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     TableIndexesController.php (4.97 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Holds the PhpMyAdmin\Controllers\Table\TableIndexesController
 *
 * @package PhpMyAdmin\Controllers
 */
namespace PhpMyAdmin\Controllers\Table;

use 
PhpMyAdmin\Controllers\TableController;
use 
PhpMyAdmin\Index;
use 
PhpMyAdmin\Message;
use 
PhpMyAdmin\Response;
use 
PhpMyAdmin\Template;
use 
PhpMyAdmin\Util;

/**
 * Class TableIndexesController
 *
 * @package PhpMyAdmin\Controllers
 */
class TableIndexesController extends TableController
{
    
/**
     * @var Index $index
     */
    
protected $index;

    
/**
     * Constructor
     *
     * @param Index $index Index
     */
    
public function __construct(
        
$response,
        
$dbi,
        
$db,
        
$table,
        
$index
    
) {
        
parent::__construct($response$dbi$db$table);

        
$this->index $index;
    }

    
/**
     * Index
     *
     * @return void
     */
    
public function indexAction()
    {
        if (isset(
$_POST['do_save_data'])) {
            
$this->doSaveDataAction();
            return;
        } 
// end builds the new index

        
$this->displayFormAction();
    }

    
/**
     * Display the form to edit/create an index
     *
     * @return void
     */
    
public function displayFormAction()
    {
        
$GLOBALS['dbi']->selectDb($GLOBALS['db']);
        
$add_fields 0;
        if (isset(
$_POST['index']) && is_array($_POST['index'])) {
            
// coming already from form
            
if (isset($_POST['index']['columns']['names'])) {
                
$add_fields count($_POST['index']['columns']['names'])
                    - 
$this->index->getColumnCount();
            }
            if (isset(
$_POST['add_fields'])) {
                
$add_fields += $_POST['added_fields'];
            }
        } elseif (isset(
$_POST['create_index'])) {
            
$add_fields $_POST['added_fields'];
        } 
// end preparing form values

        // Get fields and stores their name/type
        
if (isset($_POST['create_edit_table'])) {
            
$fields json_decode($_POST['columns'], true);
            
$index_params = array(
                
'Non_unique' => ($_POST['index']['Index_choice'] == 'UNIQUE')
                    ? 
'0' '1',
            );
            
$this->index->set($index_params);
            
$add_fields count($fields);
        } else {
            
$fields $this->dbi->getTable($this->db$this->table)
                ->
getNameAndTypeOfTheColumns();
        }

        
$form_params = array(
            
'db' => $this->db,
            
'table' => $this->table,
        );

        if (isset(
$_POST['create_index'])) {
            
$form_params['create_index'] = 1;
        } elseif (isset(
$_POST['old_index'])) {
            
$form_params['old_index'] = $_POST['old_index'];
        } elseif (isset(
$_POST['index'])) {
            
$form_params['old_index'] = $_POST['index'];
        }

        
$this->response->getHeader()->getScripts()->addFile('indexes.js');

        
$this->response->addHTML(
            
Template::get('table/index_form')->render(
                array(
                    
'fields' => $fields,
                    
'index' => $this->index,
                    
'form_params' => $form_params,
                    
'add_fields' => $add_fields,
                    
'create_edit_table' => isset($_POST['create_edit_table'])
                )
            )
        );
    }

    
/**
     * Process the data from the edit/create index form,
     * run the query to build the new index
     * and moves back to "tbl_sql.php"
     *
     * @return void
     */
    
public function doSaveDataAction()
    {
        
$error false;

        
$sql_query $this->dbi->getTable($this->db$this->table)
            ->
getSqlQueryForIndexCreateOrEdit($this->index$error);

        
// If there is a request for SQL previewing.
        
if (isset($_POST['preview_sql'])) {

            
$this->response->addJSON(
                
'sql_data',
                
Template::get('preview_sql')
                    ->
render(
                        array(
                            
'query_data' => $sql_query
                        
)
                    )
            );
        } elseif (!
$error) {

            
$this->dbi->query($sql_query);
            
$response Response::getInstance();
            if (
$response->isAjax()) {
                
$message Message::success(
                    
__('Table %1$s has been altered successfully.')
                );
                
$message->addParam($this->table);
                
$this->response->addJSON(
                    
'message'Util::getMessage($message$sql_query'success')
                );
                
$this->response->addJSON(
                    
'index_table',
                    
Index::getHtmlForIndexes(
                        
$this->table$this->db
                    
)
                );
            } else {
                include 
'tbl_structure.php';
            }
        } else {
            
$this->response->setRequestStatus(false);
            
$this->response->addJSON('message'$error);
        }
    }
}

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