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.135.248.144
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
zentao /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
php53
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
php56
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
php71
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
php81
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
php82
[ DIR ]
drwxr-xr-x
2025-04-08 14:17
_clone.php
2.42
KB
-rw-r--r--
2024-11-13 12:04
edit.php
4.39
KB
-rw-r--r--
2025-04-08 12:16
edit.xml
433
B
-rw-r--r--
2024-12-04 14:26
fileindex.php
115
B
-rw-r--r--
2024-11-13 12:04
import.php
3.28
KB
-rw-r--r--
2025-04-08 12:16
index.php
43
B
-rw-r--r--
2021-12-23 11:54
info.xml
3.16
KB
-rw-r--r--
2025-04-08 06:57
install.js
924
B
-rw-r--r--
2021-12-23 11:54
install.php
5.01
KB
-rw-r--r--
2025-04-08 12:16
install.xml
997
B
-rw-r--r--
2024-11-13 12:04
md5
2.68
KB
-rw-r--r--
2025-04-08 12:16
my.php
547
B
-rw-r--r--
2024-11-13 12:04
notes.txt
1.31
KB
-rw-r--r--
2024-11-13 12:04
upgrade.php
59.47
KB
-rw-r--r--
2025-04-08 12:16
upgrade.xml
507
B
-rw-r--r--
2021-12-23 11:54
zentao.sql
1.86
MB
-rw-r--r--
2025-04-08 06:57
zentao.zip
92.62
MB
-rw-r--r--
2025-04-08 06:57
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // clone.php //=========================================================== // SOFTACULOUS // Version : 4.2.8 // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Alons // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: http://www.softaculous.com/ (SOFTACULOUS) // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- //=========================================================== // (c)Softaculous Inc. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } //The Install process function __clone(){ global $__settings, $error, $software, $globals, $replace_data, $source_data; //Do we meet the Minimum software requirements __requirements(); if(!empty($error)){ return false; } @schmod($__settings['softpath'].'/tmp/', $globals['odc'], 1); @schmod($__settings['softpath'].'/www/', $globals['odc']); @schmod($__settings['softpath'].'/www/data/', $globals['odc'], 1); if(sversion_compare($__settings['ver'], '15.0.1', '>=')){ //15.0.1 version checks 0777 permission explicitely hence we have added this. @schmod($__settings['softpath'].'/www/data/', 0777, 1); } sclone_replace($replace_data, $__settings['softpath'].'/config/my.php', true); if(sfile_exists($__settings['softpath'].'/.htaccess')){ // If the installation is on root domain we need to change the below relative URL if(is_dom_root($source_data['softpath'])){ $replace_data['RewriteBase /'] = 'RewriteBase '.$__settings['relativeurl'].'/'; $replace_data['RewriteBase \'/\''] = 'RewriteBase \''.$__settings['relativeurl'].'\''; }elseif(is_dom_root($__settings['softpath'])){ $replace_data['RewriteBase '.$source_data['relativeurl'].'/'] = 'RewriteBase /'; $replace_data['RewriteBase \''.$source_data['relativeurl'].'\''] = 'RewriteBase \'/\''; } sclone_replace($replace_data, $__settings['softpath'].'/.htaccess', true); } } //Check whether the Minimum Software configuration matches function __requirements(){ global $__settings, $error, $software; return true; } ?>