HIVELOCITY_LS total 40 drwxr-xr-x 2 root root 4096 Jan 31 2025 . drwxr-xr-x. 13 root root 4096 Mar 26 02:41 .. -rwxrwxr-x 1 root root 355 Nov 11 2024 check-cpanel-type-update.sh -rwxrwxr-x 1 root root 91 Nov 11 2024 check-cpanel-updates.sh -rwxrwxr-x 1 root root 58 Jan 31 2025 check-kernelcare.sh -rwxr-xr-x 1 root root 112 Nov 11 2024 check-yum-updates.sh -rwxrwxr-x 1 root root 349 Nov 11 2024 check_maldet.sh -rwxr-xr-x 1 root root 50 Nov 11 2024 passwd_diff.sh -rwxrwxr-x 1 root root 116 Nov 11 2024 quarantine_maldet.sh -rwxrw-r-- 1 root root 783 Nov 11 2024 variables_kernel.sh SUDOERS -r--r-----. 1 root root 4328 Apr 29 11:43 /etc/sudoers ls: cannot open directory '/etc/sudoers.d/': Permission denied cat: /etc/sudoers: Permission denied ===/etc/sudoers.d/*=== cat: '/etc/sudoers.d/*': Permission denied HIVELOCITY_SCRIPTS ===check-cpanel-updates.sh=== #!/bin/bash /usr/bin/tail -n200 /var/cpanel/updatelogs/last|/bin/grep FATAL|/usr/bin/wc -l ===check_kernel.sh=== cat: /opt/hivelocity/check_kernel.sh: No such file or directory ===check-cpanel-type-update.sh=== #!/bin/bash # CP_UPDATE_TYPE should be LTS, STABLE, RELEASE, CURRENT, or EDGE # other than that we should warning tech CP_UPDATE_TYPE=$(cat /etc/cpupdate.conf | grep CPANEL | awk -F '=' '{ print $2 }') echo $CP_UPDATE_TYPE # if [[ $CP_UPDATE_TYPE =~ ^[0-9.]+$ ]] # then # # in this case, we need to alert tech support # echo 1 # else # echo 0 # fi