Linux server64.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
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-01-06 23:24
php53
[ DIR ]
drwxr-xr-x
2026-01-06 23:24
php56
[ DIR ]
drwxr-xr-x
2026-01-06 23:24
php71
[ DIR ]
drwxr-xr-x
2026-01-06 23:24
php81
[ DIR ]
drwxr-xr-x
2026-01-06 23:24
php82
[ DIR ]
drwxr-xr-x
2026-01-06 23:24
_constants.php
2.51
KB
-rw-r--r--
2026-01-05 07:24
_edit.php
4.21
KB
-rw-r--r--
2021-12-23 11:54
_edit.xml
433
B
-rw-r--r--
2021-12-23 11:54
clone.php
6.32
KB
-rw-r--r--
2026-01-05 11:03
config.ini
3.98
KB
-rw-r--r--
2023-01-03 10:59
extend.php
10.26
KB
-rw-r--r--
2026-01-05 11:03
fileindex.php
290
B
-rw-r--r--
2022-06-28 11:49
hizup.sql
84.95
KB
-rw-r--r--
2026-01-05 07:24
hizup.zip
178.61
MB
-rw-r--r--
2026-01-05 07:24
import.php
3.47
KB
-rw-r--r--
2026-01-05 11:03
info.xml
4.36
KB
-rw-r--r--
2026-01-05 07:24
install.js
1.28
KB
-rw-r--r--
2021-12-23 11:54
install.php
8.9
KB
-rw-r--r--
2026-01-05 11:03
install.xml
1.9
KB
-rw-r--r--
2022-02-22 09:13
md5
1.04
KB
-rw-r--r--
2026-01-05 11:03
notes.txt
355
B
-rw-r--r--
2024-04-08 13:31
update_pass.php
599
B
-rw-r--r--
2021-12-23 11: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; };