Linux gator3097.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Apache
Server IP : 192.185.227.195 & Your IP : 216.73.216.0
Domains :
Cant Read [ /etc/named.conf ]
User : mave78
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
cpanel_installer /
Delete
Unzip
Name
Size
Permission
Date
Action
HTTP
[ DIR ]
drwxr-xr-x
2025-04-01 21:20
Common.pm
7.07
KB
-rw-r--r--
2025-04-01 21:20
CpanelConfig.pm
7.22
KB
-rw-r--r--
2025-04-01 21:20
CpanelGPG.pm
5.65
KB
-rw-r--r--
2025-04-01 21:20
CpanelLogger.pm
3.37
KB
-rw-r--r--
2025-04-01 21:20
CpanelMySQL.pm
5.17
KB
-rw-r--r--
2025-04-01 21:20
Installer.pm
46.74
KB
-rw-r--r--
2025-07-30 20:26
InstallerRhel.pm
25.62
KB
-rw-r--r--
2025-07-30 20:26
InstallerUbuntu.pm
9.15
KB
-rw-r--r--
2025-04-01 21:20
OSDetect.pm
4.87
KB
-rw-r--r--
2025-04-01 21:20
TIERS
1.76
KB
-rw-r--r--
2025-08-06 07:53
VERSION
75
B
-rw-r--r--
2025-07-30 20:26
apt-get-wait
1.85
KB
-rwxr-xr-x
2025-04-01 21:20
bootstrap
2.86
KB
-rwxr-xr-x
2025-04-01 21:20
bootstrap-dnsonly
41
B
-rwxr-xr-x
2025-04-01 21:20
bootstrap-wp2
37
B
-rwxr-xr-x
2025-04-01 21:20
dpkg-wait
1.85
KB
-rwxr-xr-x
2025-04-01 21:20
fix-cpanel-perl
28.82
KB
-rwx------
2025-08-06 07:53
guess.my.ip
13
B
-rw-r--r--
2025-08-06 07:53
install
5.8
KB
-rwxr-xr-x
2025-07-30 20:26
installlogo
181
B
-rw-r--r--
2025-04-01 21:20
installlogo-bw
165
B
-rw-r--r--
2025-04-01 21:20
installlogo-bw.wp2
466
B
-rw-r--r--
2025-04-01 21:20
installlogo.wp2
644
B
-rw-r--r--
2025-04-01 21:20
updatenow.static
1.91
MB
-rwxr-xr-x
2025-08-06 07:53
verify.license.xml
287
B
-rw-r--r--
2025-08-06 07:53
Save
Rename
#!/bin/bash # In case someone's running the script after unpacking the installer... if [ "x$BASH_VERSION" = "x" ]; then echo "re-run using bash" exit 1 fi . ./VERSION PRODUCT="${*: -1}" # ensure we are only using some known products if [[ $PRODUCT != "wp2" && $PRODUCT != "dnsonly" ]]; then PRODUCT="cpanel" fi LOGO="installlogo" if [ -e "/var/cpanel/disable_cpanel_terminal_colors" ]; then LOGO="${LOGO}-bw" fi if [ -e "${LOGO}.${PRODUCT}" ]; then LOGO="${LOGO}.${PRODUCT}" fi [ -e $LOGO ] && cat $LOGO cat <<EOF Installer Version $INSTALLER_VERSION r$REVISION EOF CWD=`pwd` # Ensure Perl is available if [ ! -e "/usr/bin/perl" -a -e "/usr/local/bin/perl" ]; then echo "Linking /usr/local/bin/perl to /usr/bin/perl" ln -s /usr/local/bin/perl /usr/bin/perl fi # Ensure the fastest mirror plugin # is setup right away so we do not stall when # we install perl # # We used to support 512MB of ram which caused a problem with a high # maxthreads (FB-51412), however this is no longer an issue # https://documentation.cpanel.net/display/78Docs/Installation+Guide+-+System+Requirements # if [ -e /etc/debian_version ]; then IS_UBUNTU=1 export DEBIAN_FRONTEND=noninteractive fi if [ ! $IS_UBUNTU ]; then if [ -e "/etc/yum/pluginconf.d/fastestmirror.conf" ] && ! grep -q '#cpanel modified' /etc/yum/pluginconf.d/fastestmirror.conf ; then echo -e "\n#cpanel modified\nsocket_timeout=2\nmaxthreads=65\n" >> /etc/yum/pluginconf.d/fastestmirror.conf fi yum clean all fi PACKAGES="" if [ ! -e /usr/bin/perl ]; then PACKAGES="perl" fi if [ ! -e /usr/sbin/ip ]; then if [ $IS_UBUNTU ]; then PACKAGES="$PACKAGES iproute2" else PACKAGES="$PACKAGES iproute" fi fi if [ "$PACKAGES" != "" ]; then echo "Installing $PACKAGES ..." if [ $IS_UBUNTU ]; then apt -y install $PACKAGES else yum update -y rpm yum yum -y install $PACKAGES fi fi if [ ! -e "/usr/bin/perl" ]; then echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "Fatal! Perl must be installed before proceeding!" echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" exit 1 fi # Ensure perl version >= 5.10.0 PERLGOOD=`/usr/bin/perl -e 'if(\$] < 5.010){print "no"}else{print "yes"}'` if [ $PERLGOOD != "yes" ]; then echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" echo "perl 5.10.0 or greater is required at perl for installation" echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" exit 1 fi echo "Beginning main installation." exec ./install $* # We now know Perl 5.10 is available. Run perl. # NO OTHER checks should be in this file unless install cannot physically handle the check.