Linux thaedus.aserv.co.za 5.14.0-687.24.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 9 18:14:06 EDT 2026 x86_64
LiteSpeed
Server IP : 197.242.159.149 & Your IP : 216.73.216.114
Domains :
Cant Read [ /etc/named.conf ]
User : bigpuxtb
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-01-15 11:06
node
[ DIR ]
drwxr-xr-x
2017-01-15 11:06
php53
[ DIR ]
drwxr-xr-x
2017-01-15 11:06
php56
[ DIR ]
drwxr-xr-x
2017-01-15 11:06
.htaccess
231
B
-rwxr-xr-x
2016-06-07 04:12
_import.php
1.78
KB
-rwxr-xr-x
2013-11-30 06:01
config.js
4.51
KB
-rwxr-xr-x
2016-10-14 04:24
cron.php
413
B
-rwxr-xr-x
2014-01-17 06:42
data.zip
222
B
-rwxr-xr-x
2013-11-29 07:55
edit.php
11.63
KB
-rwxr-xr-x
2017-01-13 05:10
edit.xml
512
B
-rwxr-xr-x
2014-03-20 04:30
fileindex.php
170
B
-rwxr-xr-x
2015-04-14 04:14
ghost.zip
3.22
MB
-rwxr-xr-x
2017-01-13 05:04
info.xml
2.29
KB
-rwxr-xr-x
2017-01-13 05:04
install.js
921
B
-rwxr-xr-x
2013-11-29 02:39
install.php
13.57
KB
-rwxr-xr-x
2017-01-13 05:10
install.xml
508
B
-rwxr-xr-x
2014-02-21 02:56
install_ghost.php
2.78
KB
-rwxr-xr-x
2013-11-30 07:06
md5
2.41
KB
-rwxr-xr-x
2017-01-13 05:10
notes.txt
452
B
-rwxr-xr-x
2017-01-13 05:04
npm-shrinkwrap.json
176.3
KB
-rwxr-xr-x
2017-01-13 05:04
package.json
2.97
KB
-rwxr-xr-x
2017-01-13 05:04
remove.php
1.89
KB
-rwxr-xr-x
2013-11-29 07:55
upgrade.php
10.52
KB
-rwxr-xr-x
2017-01-13 05:10
upgrade.xml
342
B
-rwxr-xr-x
2015-03-02 03: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(); ?>