Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
akaunting /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
php53
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
php56
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
php71
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
php81
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
php82
[ DIR ]
drwxr-xr-x
2026-09-21 11:56
.env
727
B
-rw-r--r--
2022-06-02 07:46
clone.php
4.72
KB
-rw-r--r--
2026-09-21 03:16
copy_dir.php
1.33
KB
-rw-r--r--
2021-12-23 06:54
edit.php
4.38
KB
-rw-r--r--
2026-09-21 03:16
edit.xml
447
B
-rw-r--r--
2021-12-23 06:54
extend.php
9.99
KB
-rw-r--r--
2026-09-21 03:16
fileindex.php
254
B
-rw-r--r--
2025-02-17 04:42
import.php
3.53
KB
-rw-r--r--
2026-09-21 03:16
info.xml
5.31
KB
-rw-r--r--
2026-09-21 01:44
install.js
921
B
-rw-r--r--
2021-12-23 06:54
install.php
4.19
KB
-rw-r--r--
2026-09-21 03:16
install.xml
2.94
KB
-rw-r--r--
2022-06-27 08:19
md5
2.66
KB
-rw-r--r--
2026-09-21 03:16
notes.txt
722
B
-rw-r--r--
2023-10-09 06:53
update_pass.php
555
B
-rw-r--r--
2021-12-23 06:54
Save
Rename
<?php @unlink('copy_dir.php'); $src = '[[srcpath]]/storage/app/uploads'; $dst = '[[softpath]]/storage/app/uploads'; function copy_r($path, $dest){ // Is it a Directory ? if( is_dir($path) ){ // Create the Destination Dir @mkdir($dest); $stat = stat($path); // Set the mode of the destination if(!empty($stat['mode'])){ @chmod($dest, $stat['mode']); } // Set the UID if(!empty($stat['uid'])){ @chown($dest, $stat['uid']); } // Set the GID if(!empty($stat['gid'])){ @chgrp($dest, $stat['gid']); } // Start reading the current directory $objects = scandir($path); if( sizeof($objects) > 0 ){ foreach( $objects as $file ) { if( $file == "." || $file == ".." ){ continue; } // Go on copy_r( $path.'/'.$file, $dest.'/'.$file ); } } return true; }elseif( is_file($path) ){ //To exclude some files if set in script's clone.php's __pre_unzip() function $ret = copy($path, $dest); $stat = stat($path); // Set the mode of the destination if(!empty($stat['mode'])){ @chmod($dest, $stat['mode']); } // Set the UID if(!empty($stat['uid'])){ @chown($dest, $stat['uid']); } // Set the GID if(!empty($stat['gid'])){ @chgrp($dest, $stat['gid']); } return $ret; }else{ return false; } } copy_r($src, $dst);