!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/squirrelmail/functions/decode/   drwxr-xr-x
Free 129.91 GB of 142.11 GB (91.42%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     iso_8859_5.php (4.68 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * decode/iso8859-5.php
 *
 * This file contains iso-8859-5 decoding function that is needed to read
 * iso-8859-5 encoded mails in non-iso-8859-5 locale.
 *
 * Original data taken from:
 *  ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-5.TXT
 *
 *   Name:             ISO 8859-5:1999 to Unicode
 *   Unicode version:  3.0
 *   Table version:    1.0
 *   Table format:     Format A
 *   Date:             1999 July 27
 *   Authors:          Ken Whistler <kenw@sybase.com>
 *
 * Original copyright:
 *  Copyright (c) 1999 Unicode, Inc.  All Rights reserved.
 *
 *  This file is provided as-is by Unicode, Inc. (The Unicode Consortium).
 *  No claims are made as to fitness for any particular purpose.  No
 *  warranties of any kind are expressed or implied.  The recipient
 *  agrees to determine applicability of information provided.  If this
 *  file has been provided on optical media by Unicode, Inc., the sole
 *  remedy for any claim will be exchange of defective media within 90
 *  days of receipt.
 *
 *  Unicode, Inc. hereby grants the right to freely use the information
 *  supplied in this file in the creation of products supporting the
 *  Unicode Standard, and to make copies of this file in any form for
 *  internal or external distribution as long as this notice remains
 *  attached.
 *
 * @copyright 2003-2010 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: iso_8859_5.php 13893 2010-01-25 02:47:41Z pdontthink $
 * @package squirrelmail
 * @subpackage decode
 */

/**
 * Decode iso8859-5 encoded string
 * @param string $string Encoded string
 * @return string $string Decoded string
 */
function charset_decode_iso_8859_5 ($string) {
    
// don't do decoding when there are no 8bit symbols
    
if (! sq_is8bit($string,'iso-8859-5'))
        return 
$string;

    
$iso8859_5 = array(
        
"\xA0" => '&#160;',
        
"\xA1" => '&#1025;',
        
"\xA2" => '&#1026;',
        
"\xA3" => '&#1027;',
        
"\xA4" => '&#1028;',
        
"\xA5" => '&#1029;',
        
"\xA6" => '&#1030;',
        
"\xA7" => '&#1031;',
        
"\xA8" => '&#1032;',
        
"\xA9" => '&#1033;',
        
"\xAA" => '&#1034;',
        
"\xAB" => '&#1035;',
        
"\xAC" => '&#1036;',
        
"\xAD" => '&#173;',
        
"\xAE" => '&#1038;',
        
"\xAF" => '&#1039;',
        
"\xB0" => '&#1040;',
        
"\xB1" => '&#1041;',
        
"\xB2" => '&#1042;',
        
"\xB3" => '&#1043;',
        
"\xB4" => '&#1044;',
        
"\xB5" => '&#1045;',
        
"\xB6" => '&#1046;',
        
"\xB7" => '&#1047;',
        
"\xB8" => '&#1048;',
        
"\xB9" => '&#1049;',
        
"\xBA" => '&#1050;',
        
"\xBB" => '&#1051;',
        
"\xBC" => '&#1052;',
        
"\xBD" => '&#1053;',
        
"\xBE" => '&#1054;',
        
"\xBF" => '&#1055;',
        
"\xC0" => '&#1056;',
        
"\xC1" => '&#1057;',
        
"\xC2" => '&#1058;',
        
"\xC3" => '&#1059;',
        
"\xC4" => '&#1060;',
        
"\xC5" => '&#1061;',
        
"\xC6" => '&#1062;',
        
"\xC7" => '&#1063;',
        
"\xC8" => '&#1064;',
        
"\xC9" => '&#1065;',
        
"\xCA" => '&#1066;',
        
"\xCB" => '&#1067;',
        
"\xCC" => '&#1068;',
        
"\xCD" => '&#1069;',
        
"\xCE" => '&#1070;',
        
"\xCF" => '&#1071;',
        
"\xD0" => '&#1072;',
        
"\xD1" => '&#1073;',
        
"\xD2" => '&#1074;',
        
"\xD3" => '&#1075;',
        
"\xD4" => '&#1076;',
        
"\xD5" => '&#1077;',
        
"\xD6" => '&#1078;',
        
"\xD7" => '&#1079;',
        
"\xD8" => '&#1080;',
        
"\xD9" => '&#1081;',
        
"\xDA" => '&#1082;',
        
"\xDB" => '&#1083;',
        
"\xDC" => '&#1084;',
        
"\xDD" => '&#1085;',
        
"\xDE" => '&#1086;',
        
"\xDF" => '&#1087;',
        
"\xE0" => '&#1088;',
        
"\xE1" => '&#1089;',
        
"\xE2" => '&#1090;',
        
"\xE3" => '&#1091;',
        
"\xE4" => '&#1092;',
        
"\xE5" => '&#1093;',
        
"\xE6" => '&#1094;',
        
"\xE7" => '&#1095;',
        
"\xE8" => '&#1096;',
        
"\xE9" => '&#1097;',
        
"\xEA" => '&#1098;',
        
"\xEB" => '&#1099;',
        
"\xEC" => '&#1100;',
        
"\xED" => '&#1101;',
        
"\xEE" => '&#1102;',
        
"\xEF" => '&#1103;',
        
"\xF0" => '&#8470;',
        
"\xF1" => '&#1105;',
        
"\xF2" => '&#1106;',
        
"\xF3" => '&#1107;',
        
"\xF4" => '&#1108;',
        
"\xF5" => '&#1109;',
        
"\xF6" => '&#1110;',
        
"\xF7" => '&#1111;',
        
"\xF8" => '&#1112;',
        
"\xF9" => '&#1113;',
        
"\xFA" => '&#1114;',
        
"\xFB" => '&#1115;',
        
"\xFC" => '&#1116;',
        
"\xFD" => '&#167;',
        
"\xFE" => '&#1118;',
        
"\xFF" => '&#1119;'
    
);

    
$string str_replace(array_keys($iso8859_5), array_values($iso8859_5), $string);

    return 
$string;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0087 ]--