!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/home/makras/public_html/db_admin/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     user_password.php (4.66 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* $Id: user_password.php,v 2.3 2003/11/26 22:52:24 rabus Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:


/**
 * Gets some core libraries
 */
require_once('./libraries/grab_globals.lib.php');
require_once(
'./libraries/common.lib.php');

/**
 * Displays an error message and exits if the user isn't allowed to use this
 * script
 */
if (!$cfg['ShowChgPassword']) {
    
$cfg['ShowChgPassword'] = @PMA_mysql_query('USE mysql'$userlink);
}
if (
$cfg['Server']['auth_type'] == 'config' || !$cfg['ShowChgPassword']) {
    require_once(
'./header.inc.php');
    echo 
'<p><b>' $strError '</b></p>' "\n"
       
'<p>&nbsp;&nbsp;&nbsp;&nbsp;' .  $strNoRights '</p>' "\n";
    require_once(
'./footer.inc.php');
// end if


/**
 * If the "change password" form has been submitted, checks for valid values
 * and submit the query or logout
 */
if (isset($nopass)) {
    
$error_msg '';

    if (
$nopass == && isset($pma_pw) && isset($pma_pw2)) {
        if (
$pma_pw != $pma_pw2) {
            
$error_msg $strPasswordNotSame;
        }
        if (empty(
$pma_pw) || empty($pma_pw2)) {
            
$error_msg $strPasswordEmpty;
        }
    } 
// end if

    // here $nopass could be == 1
    
if (empty($error_msg)) {

        
// Defines the url to return to in case of error in the sql statement
        
$common_url_query PMA_generate_common_url();

        
$err_url          'user_password.php?' $common_url_query;

        
$sql_query        'SET password = ' . (($pma_pw == '') ? '\'\'' 'PASSWORD(\'' preg_replace('@.@s''*'$pma_pw) . '\')');
        
$local_query      'SET password = ' . (($pma_pw == '') ? '\'\'' 'PASSWORD(\'' PMA_sqlAddslashes($pma_pw) . '\')');
        
$result           = @PMA_mysql_query($local_query) or PMA_mysqlDie(''''FALSE$err_url);

        
// Changes password cookie if required
        
if ($cfg['Server']['auth_type'] == 'cookie') {
            
setcookie('pma_cookie_password'base64_encode(PMA_blowfish_encrypt($pma_pw,$GLOBALS['cfg']['blowfish_secret'])), 0$cookie_path''$is_https);
        } 
// end if
        // For http auth. mode, the "back" link will also enforce new
        // authentication
        
$http_logout = ($cfg['Server']['auth_type'] == 'http')
                     ? 
'&amp;old_usr=relog'
                     
'';

        
// Displays the page
        
require_once('./header.inc.php');
        echo 
'<h1>' $strChangePassword '</h1>' "\n\n";
        
$show_query 'y';
        
PMA_showMessage($strUpdateProfileMessage);
        
?>
        <a href="index.php?<?php echo $common_url_query $http_logout?>" target="_parent">
            <b><?php echo $strBack?></b></a>
        <?php
        
exit();
    } 
// end if
// end if


/**
 * If the "change password" form hasn't been submitted or the values submitted
 * aren't valid -> displays the form
 */
// Loads the headers
$js_to_run 'user_password.js';
require_once(
'./header.inc.php');
echo 
'<h1>' $strChangePassword '</h1>' "\n\n";

// Displays an error message if required
if (!empty($error_msg)) {
    echo 
'<p><b>' $strError '&nbsp;:&nbsp;' $error_msg '</b></p>' "\n";
}

// loic1: autocomplete feature of IE kills the "onchange" event handler and it
//        must be replaced by the "onpropertychange" one in this case
$chg_evt_handler = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 5)
                 ? 
'onpropertychange'
                 
'onchange';

// Displays the form
?>
<form method="post" action="./user_password.php" name="chgPassword" onsubmit="return checkPassword(this)">
    <?php echo PMA_generate_common_hidden_inputs(); ?>
    <table border="0">
    <tr>
        <td colspan="2">
            <input type="radio" name="nopass" value="1" onclick="pma_pw.value = ''; pma_pw2.value = ''; this.checked = true" />
            <?php echo $GLOBALS['strNoPassword'] . "\n"?>
        </td>
    </tr>
    <tr>
        <td>
            <input type="radio" name="nopass" value="0" checked="checked " />
            <?php echo $GLOBALS['strPassword']; ?>&nbsp;:&nbsp;
        </td>
        <td>
            <input type="password" name="pma_pw" size="10" class="textfield" <?php echo $chg_evt_handler?>="nopass[1].checked = true" />
            &nbsp;&nbsp;
            <?php echo $GLOBALS['strReType']; ?>&nbsp;:&nbsp;
            <input type="password" name="pma_pw2" size="10" class="textfield" <?php echo $chg_evt_handler?>="nopass[1].checked = true" />
        </td>
    </tr>
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
    <tr>
        <td colspan="2">
            <input type="submit" value="<?php echo($strChange); ?>" />
        </td>
    </tr>
    </table>
</form>

<?php
/**
 * Displays the footer
 */
require_once('./footer.inc.php');
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0051 ]--