Linux taon.o2switch.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
LiteSpeed
Server IP : 109.234.166.246 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : mhxr7844
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
2022-11-29 10:40
status
[ DIR ]
drwxr-xr-x
2024-11-18 11:58
EULA
2.87
KB
-rw-r--r--
2023-03-31 16:41
FleetSSLProvider.pm
659
B
-rw-r--r--
2023-03-31 16:41
THIRD-PARTY
16.95
KB
-rw-r--r--
2023-03-31 16:41
bootstrap.min.css
97.62
KB
-rw-r--r--
2023-03-31 16:41
bootstrap.min.js
28.43
KB
-rw-r--r--
2023-03-31 16:41
datatables.min.css
13.72
KB
-rw-r--r--
2023-03-31 16:41
datatables.min.js
175.99
KB
-rw-r--r--
2023-03-31 16:41
dynamicui_letsencrypt.conf
254
B
-rw-r--r--
2023-03-31 16:41
fix_fleetssl_cpanel_0.19.5-upgrade.sh
275
B
-rwxr-xr-x
2023-03-31 16:41
get_proxy_names
340
B
-rwxr-xr-x
2023-03-31 16:41
index.html
140
B
-rw-r--r--
2023-03-31 16:41
install.json
328
B
-rw-r--r--
2023-03-31 16:41
jquery-1.12.4.min.js
94.89
KB
-rw-r--r--
2023-03-31 16:41
letsencrypt-cpanel-whm.conf
290
B
-rw-r--r--
2023-03-31 16:41
letsencrypt-cpanel-whm.jpg
1.31
KB
-rw-r--r--
2023-03-31 16:41
letsencrypt-cpanel-x3.png
1.57
KB
-rw-r--r--
2023-03-31 16:41
letsencrypt-cpanel.cpanelplugin
2.43
KB
-rw-r--r--
2023-03-31 16:41
letsencrypt-cpanel.png
1.52
KB
-rw-r--r--
2023-03-31 16:41
letsencrypt.chkservd
103
B
-rw-r--r--
2023-03-31 16:41
letsencrypt.live.cgi
12.71
MB
-rwxr-xr-x
2023-03-31 16:41
meta.json
55
B
-rw-r--r--
2023-03-31 16:41
post-install.sh
1.16
KB
-rw-r--r--
2023-03-31 16:41
pre-install.sh
1.98
KB
-rw-r--r--
2023-03-31 16:41
uninstall.sh
1.98
KB
-rw-r--r--
2023-03-31 16:41
vendor.en.ini
3.27
KB
-rw-r--r--
2023-03-31 16:41
vendor.fr.ini
7.91
KB
-rw-r--r--
2023-03-31 16:41
vendor_email.en.ini
1.86
KB
-rw-r--r--
2023-03-31 16:41
vendor_error.html
493
B
-rw-r--r--
2023-03-31 16:41
vendor_home.html
6.06
KB
-rw-r--r--
2023-03-31 16:41
vendor_issue-reuse.html
1.06
KB
-rw-r--r--
2023-03-31 16:41
vendor_issue.html
6.86
KB
-rw-r--r--
2023-03-31 16:41
vendor_reinstall.html
1.93
KB
-rw-r--r--
2023-03-31 16:41
vendor_remove.html
630
B
-rw-r--r--
2023-03-31 16:41
vendor_result.html
249
B
-rw-r--r--
2023-03-31 16:41
vendor_settings.html
565
B
-rw-r--r--
2023-03-31 16:41
vendor_theme_paper_lantern_header.html
931
B
-rw-r--r--
2023-03-31 16:41
vendor_theme_x3_footer.html
145
B
-rw-r--r--
2023-03-31 16:41
vendor_theme_x3_header.html
210
B
-rw-r--r--
2023-03-31 16:41
vendor_view.html
2.27
KB
-rw-r--r--
2023-03-31 16:41
whm_home.html
4.35
KB
-rw-r--r--
2023-03-31 16:41
Save
Rename
#!/usr/bin/env bash chmod +x /opt/fleetssl-cpanel/get_proxy_names cd /opt/fleetssl-cpanel && ./letsencrypt.live.cgi -mode install # symlink for easy access ln -sf /opt/fleetssl-cpanel/letsencrypt.live.cgi /usr/local/bin/le-cp # we need to restart apache to load in the new autossl exclusion urls the first time NEEDS_APACHE_RESTART=0 if [ ! -e /var/cpanel/perl/Cpanel/SSL/Auto/Provider/FleetSSLProvider.pm ]; then echo "Will rebuild conf and restart Apache to reload AutoSSL DCV URLs" NEEDS_APACHE_RESTART=1 fi # symlink autossl provider mkdir -p /var/cpanel/perl/Cpanel/SSL/Auto/Provider/ ln -sf /opt/fleetssl-cpanel/FleetSSLProvider.pm /var/cpanel/perl/Cpanel/SSL/Auto/Provider/FleetSSLProvider.pm # rebuild httpconf to update new autossl provider and restart apache if [ $NEEDS_APACHE_RESTART -eq "1" ]; then echo "Rebuilding Apache conf and restarting now ..." /scripts/rebuildhttpdconf && /scripts/restartsrv_httpd > /dev/null fi # Run installer script fix asynchronously so that we can automatically fix the prerm issue. chmod +x /opt/fleetssl-cpanel/fix_fleetssl_cpanel_0.19.5-upgrade.sh nohup /opt/fleetssl-cpanel/fix_fleetssl_cpanel_0.19.5-upgrade.sh 2>&1 >/dev/null &