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

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/home/mnnews/public_html/login/phpmyadmin/libraries/   drwxr-xr-x
Free 4.4 GB of 27.03 GB (16.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     kanji-encoding.lib.php (4.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Set of functions for kanji-encoding convert (available only with japanese
* language)
*
* PHP4 configure requirements:
*     --enable-mbstring --enable-mbstr-enc-trans --enable-mbregex
*
* 2002/2/22 - by Yukihiro Kawada <kawada@den.fujifilm.co.jp>
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
* Gets the php internal encoding codes and sets the available encoding
* codes list
* 2002/1/4 by Y.Kawada
*
* @global  string $kanji_encoding_list the available encoding codes list
*
* @return boolean  always true
*/
function PMA_Kanji_checkEncoding()
{
    global
$kanji_encoding_list;

    
$internal_enc = mb_internal_encoding();
    if (
$internal_enc == 'EUC-JP') {
        
$kanji_encoding_list = 'ASCII,EUC-JP,SJIS,JIS';
    } else {
        
$kanji_encoding_list = 'ASCII,SJIS,EUC-JP,JIS';
    }

    return
true;
}
// end of the 'PMA_Kanji_checkEncoding' function


/**
* Reverses SJIS & EUC-JP position in the encoding codes list
* 2002/1/4 by Y.Kawada
*
* @global  string $kanji_encoding_list the available encoding codes list
*
* @return boolean  always true
*/
function PMA_Kanji_changeOrder()
{
    global
$kanji_encoding_list;

    
$parts = explode(',', $kanji_encoding_list);
    if (
$parts[1] == 'EUC-JP') {
        
$kanji_encoding_list = 'ASCII,SJIS,EUC-JP,JIS';
    } else {
        
$kanji_encoding_list = 'ASCII,EUC-JP,SJIS,JIS';
    }

    return
true;
}
// end of the 'PMA_Kanji_changeOrder' function


/**
* Kanji string encoding convert
* 2002/1/4 by Y.Kawada
*
* @param string $str  the string to convert
* @param string $enc  the destination encoding code
* @param string $kana set 'kana' convert to JIS-X208-kana
*
* @global  string $kanji_encoding_list the available encoding codes list
*
* @return string   the converted string
*/
function PMA_Kanji_strConv($str, $enc, $kana)
{
    global
$kanji_encoding_list;

    if (
$enc == '' && $kana == '') {
        return
$str;
    }
    
$string_encoding = mb_detect_encoding($str, $kanji_encoding_list);

    if (
$kana == 'kana') {
        
$dist = mb_convert_kana($str, 'KV', $string_encoding);
        
$str  = $dist;
    }
    if (
$string_encoding != $enc && $enc != '') {
        
$dist = mb_convert_encoding($str, $enc, $string_encoding);
    } else {
        
$dist = $str;
    }
    return
$dist;
}
// end of the 'PMA_Kanji_strConv' function


/**
* Kanji file encoding convert
* 2002/1/4 by Y.Kawada
*
* @param string $file the name of the file to convert
* @param string $enc  the destination encoding code
* @param string $kana set 'kana' convert to JIS-X208-kana
*
* @return string   the name of the converted file
*/
function PMA_Kanji_fileConv($file, $enc, $kana)
{
    if (
$enc == '' && $kana == '') {
        return
$file;
    }

    
$tmpfname = tempnam('', $enc);
    
$fpd      = fopen($tmpfname, 'wb');
    
$fps      = fopen($file, 'r');
    
PMA_Kanji_changeOrder();
    while (!
feof($fps)) {
        
$line = fgets($fps, 4096);
        
$dist = PMA_Kanji_strConv($line, $enc, $kana);
        
fputs($fpd, $dist);
    }
// end while
    
PMA_Kanji_changeOrder();
    
fclose($fps);
    
fclose($fpd);
    
unlink($file);

    return
$tmpfname;
}
// end of the 'PMA_Kanji_fileConv' function


/**
* Defines radio form fields to switch between encoding modes
* 2002/1/4 by Y.Kawada
*
* @return string   xhtml code for the radio controls
*/
function PMA_Kanji_encodingForm()
{
    return
"\n"
        
. '<ul>' . "\n" . '<li>'
        
. '<input type="radio" name="knjenc" value="" checked="checked" '
        
. 'id="kj-none" />'
        
. '<label for="kj-none">'
        
/* l10n: This is currently used only in Japanese locales */
        
. _pgettext('None encoding conversion', 'None')
        .
"</label>\n"
        
. '<input type="radio" name="knjenc" value="EUC-JP" id="kj-euc" />'
        
. '<label for="kj-euc">EUC</label>' . "\n"
        
. '<input type="radio" name="knjenc" value="SJIS" id="kj-sjis" />'
        
. '<label for="kj-sjis">SJIS</label>' . "\n"
        
. '</li>' . "\n" . '<li>'
        
. '<input type="checkbox" name="xkana" value="kana" id="kj-kana" />'
        
. "\n"
        
. '<label for="kj-kana">'
        
/* l10n: This is currently used only in Japanese locales */
        
. __('Convert to Kana')
        .
'</label><br />'
        
. "\n"
        
. '</li>' . "\n" . '</ul>'
        
;
}
// end of the 'PMA_Kanji_encodingForm' function


PMA_Kanji_checkEncoding();


:: 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 #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0042 ]--