Linux res4.skyhost.pk 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64
LiteSpeed
Server IP : 65.109.66.33 & Your IP : 216.73.217.126
Domains : 334 Domain
User : supercareproduct
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
hizup /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
php53
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
php56
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
php71
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
php81
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
php82
[ DIR ]
drwxr-xr-x
2026-07-16 12:10
_constants.php
3.52
KB
-rw-r--r--
2026-07-15 01:51
_edit.php
4.21
KB
-rw-r--r--
2021-12-23 01:54
_edit.xml
433
B
-rw-r--r--
2021-12-23 01:54
clone.php
6.32
KB
-rw-r--r--
2026-07-15 03:19
config.ini
3.98
KB
-rw-r--r--
2023-01-03 00:59
extend.php
10.28
KB
-rw-r--r--
2026-07-15 03:19
fileindex.php
372
B
-rw-r--r--
2026-07-15 01:51
import.php
3.45
KB
-rw-r--r--
2026-07-15 03:19
info.xml
4.36
KB
-rw-r--r--
2026-07-15 01:51
install.js
1.28
KB
-rw-r--r--
2021-12-23 01:54
install.php
8.9
KB
-rw-r--r--
2026-07-15 03:19
install.xml
1.9
KB
-rw-r--r--
2022-02-21 23:13
md5
3.32
KB
-rw-r--r--
2026-07-15 03:19
notes.txt
593
B
-rw-r--r--
2026-07-15 01:51
update_pass.php
599
B
-rw-r--r--
2021-12-23 01:54
Save
Rename
////////////////////////////////////////////////////////////// // install.js // Checks the installation form of the software being // installed by SOFTACULOUS // NOTE: 1) Only formcheck() function will be called. // 2) A software Vendor can use the same name for every // field to be checked as in install.xml . It can be // called using $('fieldname').value or any property // 3) Must Return true or false // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- // (c)Softaculous Inc. ////////////////////////////////////////////////////////////// function formcheck(){ if(window.check_punycode){ //Check the Bug Email if(!check_punycode($('bug_email').value)){ alert('{{err_bugemail}}'); return false; } //Check the No Reply Email if(!check_punycode($('noreply_email').value)){ alert('{{err_noreplyemail}}'); return false; } //Check the Feedback Email if(!check_punycode($('feedback_email').value)){ alert('{{err_feedbackemail}}'); return false; } //Check the Admin Email if(!check_punycode($('admin_email').value)){ alert('{{err_ademail}}'); return false; } return true; } return true; };