Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.142.152.51
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
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
2025-04-30 14:15
php53
[ DIR ]
drwxr-xr-x
2025-04-30 14:15
php56
[ DIR ]
drwxr-xr-x
2025-04-30 14:15
php71
[ DIR ]
drwxr-xr-x
2025-04-30 14:15
php81
[ DIR ]
drwxr-xr-x
2025-04-30 14:15
php82
[ DIR ]
drwxr-xr-x
2025-04-30 14:15
.env
727
B
-rw-r--r--
2022-06-02 11:46
akaunting.sql
76.65
KB
-rw-r--r--
2025-04-30 08:20
akaunting.zip
68.27
MB
-rw-r--r--
2025-04-30 08:20
clone.php
4.71
KB
-rw-r--r--
2025-04-30 12:23
copy_dir.php
1.33
KB
-rw-r--r--
2021-12-23 11:54
edit.php
4.38
KB
-rw-r--r--
2025-04-30 12:23
edit.xml
447
B
-rw-r--r--
2021-12-23 11:54
extend.php
10.01
KB
-rw-r--r--
2025-04-30 12:23
fileindex.php
254
B
-rw-r--r--
2025-02-17 09:42
import.php
3.55
KB
-rw-r--r--
2025-04-30 12:23
info.xml
5.31
KB
-rw-r--r--
2025-04-30 08:20
install.js
921
B
-rw-r--r--
2021-12-23 11:54
install.php
4.21
KB
-rw-r--r--
2025-04-30 12:23
install.xml
2.94
KB
-rw-r--r--
2022-06-27 12:19
md5
1.04
KB
-rw-r--r--
2025-04-30 12:23
notes.txt
722
B
-rw-r--r--
2023-10-09 10:53
update_pass.php
555
B
-rw-r--r--
2021-12-23 11: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);