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 /
core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
Application.class.php
2.68
KB
-rw-r--r--
Controller.class.php
1.44
KB
-rw-r--r--
Model.class.php
627
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Controller.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 */ /** * 控制器抽象类 */ abstract class Controller { public $in; public $config; // 全局配置 public $tpl; // 模板目录 public $values; // 模板变量 /** * 构造函数 */ function __construct(){ global $in,$config; $this ->config = &$config; $this ->in = &$in; $this ->values['config'] = &$config; $this ->values['in'] = &$in; $this ->tpl = TEMPLATE.get_class($this).'/'; } /** * 加载模型 * @param string $class */ public function loadModel($class){ $args = func_get_args(); $this -> $class = call_user_func_array('init_model', $args); return $this -> $class; } /** * 加载类库文件 * @param string $class */ public function loadClass($class){ if (1 === func_num_args()) { $this -> $class = new $class; } else { $reflectionObj = new ReflectionClass($class); $args = func_get_args(); array_shift($args); $this -> $class = $reflectionObj -> newInstanceArgs($args); } return $this -> $class; } /** * 显示模板 * * TODO smarty * @param */ protected function assign($key,$value){ $this->values[$key] = $value; } /** * 显示模板 * @param */ protected function display($tplFile){ ob_end_clean(); extract($this->values); require($this->tpl.$tplFile); } }
Close