Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
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 08:52
php53
[ DIR ]
drwxr-xr-x
2026-07-16 08:52
php56
[ DIR ]
drwxr-xr-x
2026-07-16 08:52
php71
[ DIR ]
drwxr-xr-x
2026-07-16 08:52
php81
[ DIR ]
drwxr-xr-x
2026-07-16 08:52
php82
[ DIR ]
drwxr-xr-x
2026-07-16 08:52
_constants.php
3.52
KB
-rw-r--r--
2026-07-15 10:51
_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-07-15 12:19
config.ini
3.98
KB
-rw-r--r--
2023-01-03 10:59
extend.php
10.28
KB
-rw-r--r--
2026-07-15 12:19
fileindex.php
372
B
-rw-r--r--
2026-07-15 10:51
import.php
3.45
KB
-rw-r--r--
2026-07-15 12:19
info.xml
4.36
KB
-rw-r--r--
2026-07-15 10:51
install.js
1.28
KB
-rw-r--r--
2021-12-23 11:54
install.php
8.9
KB
-rw-r--r--
2026-07-15 12:19
install.xml
1.9
KB
-rw-r--r--
2022-02-22 09:13
md5
3.32
KB
-rw-r--r--
2026-07-15 12:19
notes.txt
593
B
-rw-r--r--
2026-07-15 10:51
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; };