Linux cambridge2.uknoc5.com 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
LiteSpeed
Server IP : 92.48.92.37 & Your IP : 18.118.255.51
Domains :
Cant Read [ /etc/named.conf ]
User : drazizulhaq
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
fleetssl-cpanel /
Delete
Unzip
Name
Size
Permission
Date
Action
DataTables-1.10.11
[ DIR ]
drwxr-xr-x
2024-12-16 18:45
status
[ DIR ]
drwxr-xr-x
2024-12-16 18:45
EULA
2.87
KB
-rw-r--r--
2023-02-09 06:22
FleetSSLProvider.pm
659
B
-rw-r--r--
2023-02-09 06:22
THIRD-PARTY
16.95
KB
-rw-r--r--
2023-02-09 06:22
bootstrap.min.css
97.62
KB
-rw-r--r--
2023-02-09 06:22
bootstrap.min.js
28.43
KB
-rw-r--r--
2023-02-09 06:22
datatables.min.css
13.72
KB
-rw-r--r--
2023-02-09 06:22
datatables.min.js
175.99
KB
-rw-r--r--
2023-02-09 06:22
dynamicui_letsencrypt.conf
254
B
-rw-r--r--
2023-02-09 06:22
fix_fleetssl_cpanel_0.19.5-upgrade.sh
275
B
-rwxr-xr-x
2023-02-09 06:22
get_proxy_names
340
B
-rwxr-xr-x
2023-02-09 06:22
index.html
140
B
-rw-r--r--
2023-02-09 06:22
install.json
328
B
-rw-r--r--
2023-02-09 06:22
jquery-1.12.4.min.js
94.89
KB
-rw-r--r--
2023-02-09 06:22
letsencrypt-cpanel-whm.conf
290
B
-rw-r--r--
2023-02-09 06:22
letsencrypt-cpanel-whm.jpg
1.31
KB
-rw-r--r--
2023-02-09 06:22
letsencrypt-cpanel-x3.png
1.57
KB
-rw-r--r--
2023-02-09 06:22
letsencrypt-cpanel.cpanelplugin
2.43
KB
-rw-r--r--
2023-02-09 06:22
letsencrypt-cpanel.png
1.52
KB
-rw-r--r--
2023-02-09 06:22
letsencrypt.chkservd
103
B
-rw-r--r--
2023-02-09 06:22
letsencrypt.live.cgi
12.66
MB
-rwxr-xr-x
2023-02-09 06:22
meta.json
55
B
-rw-r--r--
2023-02-09 06:22
post-install.sh
1.16
KB
-rw-r--r--
2023-02-09 06:22
pre-install.sh
1.98
KB
-rw-r--r--
2023-02-09 06:22
uninstall.sh
1.98
KB
-rw-r--r--
2023-02-09 06:22
vendor.en.ini
3.33
KB
-rw-r--r--
2023-02-09 06:22
vendor_email.en.ini
1.86
KB
-rw-r--r--
2023-02-09 06:22
vendor_error.html
493
B
-rw-r--r--
2023-02-09 06:22
vendor_home.html
5.2
KB
-rw-r--r--
2023-02-09 06:22
vendor_issue-reuse.html
1.06
KB
-rw-r--r--
2023-02-09 06:22
vendor_issue.html
6.26
KB
-rw-r--r--
2023-02-09 06:22
vendor_reinstall.html
1.93
KB
-rw-r--r--
2023-02-09 06:22
vendor_remove.html
630
B
-rw-r--r--
2023-02-09 06:22
vendor_result.html
249
B
-rw-r--r--
2023-02-09 06:22
vendor_settings.html
565
B
-rw-r--r--
2023-02-09 06:22
vendor_theme_paper_lantern_header.html
931
B
-rw-r--r--
2023-02-09 06:22
vendor_theme_x3_footer.html
145
B
-rw-r--r--
2023-02-09 06:22
vendor_theme_x3_header.html
210
B
-rw-r--r--
2023-02-09 06:22
vendor_view.html
2.27
KB
-rw-r--r--
2023-02-09 06:22
whm_home.html
4.35
KB
-rw-r--r--
2023-02-09 06:22
Save
Rename
#!/usr/bin/env bash okPrint() { echo -e "\e[32m${1}\e[0m" } warnPrint() { echo -e "\e[33m${1}\e[0m" } failPrint() { echo -e "\e[91m${1}\e[0m" exit 1 } fileExists() { if [ -s "$1" ]; then return 0 # true else return 1 # false fi } daemonRunning() { pidof letsencrypt.live.cgi > /dev/null return $? } checkRoot() { if (( EUID != 0 )); then failPrint "Please run installer as root" fi okPrint "Running installer as root" } checkOsVersion() { if [ "$FLEETSSL_SKIP_OS_CHECK" = "y" ]; then return fi if ! fileExists "/etc/os-release"; then # CloudLinux is missing /etc/os-release. Let's silently ignore it. return fi . /etc/os-release # Any non-EOL RHEL variant is okay if fileExists "/etc/redhat-release" && [ $(echo "$VERSION_ID >= 7" | bc -l) = 1 ]; then okPrint "RHEL-like OS version OK!" return fi # Ubuntu 20.04 is okay if [ \( "$ID" = "ubuntu" -a "$VERSION_ID" = "20.04" \) ]; then okPrint "Ubuntu OS version OK!" return fi failPrint "Unsupported operating system $ID ($VERSION_ID). Set the env variable FLEETSSL_SKIP_OS_CHECK=y to force installation." } checkCpanelVersion() { if ! fileExists "/usr/local/cpanel/cpanel"; then failPrint "Cannot find cPanel installed" fi } stopService() { service letsencrypt-cpanel stop > /dev/null if daemonRunning; then warnPrint "Daemon service not stopped successfully, attempting manual shutdown" killall -TERM letsencrypt.live.cgi sleep 5s if daemonRunning; then warnPrint "Manual shutdown not successful, killing process" killall -9 letsencrypt.live.cgi fi fi okPrint "FleetSSL cPanel service daemon stopped" } okPrint "*** By running this installer, you indicate that you have read the end-user\n licence agreement (https://cpanel.fleetssl.com/eula) and agree to all of its terms, as stated. ***\n" checkRoot checkOsVersion checkCpanelVersion stopService