Current Path: > > sbin
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0555 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
chroot | File | 42520 bytes | April 01 2023 08:44:39. | |
cloudlinux-selector | File | 654 bytes | July 11 2025 17:46:23. | |
consoletype | File | 12144 bytes | November 10 2022 08:01:00. | |
cracklib-check | File | 13360 bytes | October 12 2019 00:47:15. | |
cracklib-format | File | 251 bytes | October 12 2019 00:47:14. | |
cracklib-packer | File | 13368 bytes | October 12 2019 00:47:15. | |
cracklib-unpacker | File | 9248 bytes | October 12 2019 00:47:15. | |
create-cracklib-dict | File | 990 bytes | October 12 2019 00:47:14. | |
cxs | File | 1038 bytes | July 31 2025 08:47:06. | |
ddns-confgen | File | 20952 bytes | February 20 2025 09:05:41. | |
dnssec-checkds | File | 936 bytes | February 20 2025 09:05:34. | |
dnssec-coverage | File | 938 bytes | February 20 2025 09:05:34. | |
dnssec-dsfromkey | File | 62304 bytes | February 20 2025 09:05:41. | |
dnssec-importkey | File | 62296 bytes | February 20 2025 09:05:41. | |
dnssec-keyfromlabel | File | 66312 bytes | February 20 2025 09:05:41. | |
dnssec-keygen | File | 74584 bytes | February 20 2025 09:05:41. | |
dnssec-keymgr | File | 934 bytes | February 20 2025 09:05:34. | |
dnssec-revoke | File | 58104 bytes | February 20 2025 09:05:41. | |
dnssec-settime | File | 62296 bytes | February 20 2025 09:05:41. | |
dnssec-signzone | File | 120016 bytes | February 20 2025 09:05:41. | |
dnssec-verify | File | 54112 bytes | February 20 2025 09:05:41. | |
exim | File | 1040 bytes | May 12 2025 17:54:51. | |
faillock | File | 21016 bytes | July 01 2025 15:25:20. | |
genrandom | File | 12672 bytes | February 20 2025 09:05:41. | |
ip | File | 709944 bytes | May 23 2024 08:36:03. | |
isc-hmac-fixup | File | 12136 bytes | February 20 2025 09:05:41. | |
ldconfig | File | 1009688 bytes | June 09 2025 20:31:29. | |
mkhomedir_helper | File | 25016 bytes | July 01 2025 15:25:20. | |
named-checkzone | File | 37512 bytes | February 20 2025 09:05:41. | |
named-compilezone | File | 37512 bytes | February 20 2025 09:05:41. | |
nsec3hash | File | 12584 bytes | February 20 2025 09:05:41. | |
pam_console_apply | File | 46280 bytes | July 01 2025 15:25:20. | |
pam_timestamp_check | File | 12152 bytes | July 01 2025 15:25:20. | |
pluginviewer | File | 21064 bytes | February 23 2022 20:13:56. | |
proxyexec | File | 21680 bytes | September 02 2020 07:49:11. | |
pwhistory_helper | File | 20920 bytes | July 01 2025 15:25:20. | |
saslauthd | File | 96688 bytes | February 23 2022 20:13:56. | |
sasldblistusers2 | File | 21264 bytes | February 23 2022 20:13:56. | |
saslpasswd2 | File | 16816 bytes | February 23 2022 20:13:56. | |
sendmail | File | 1048 bytes | May 12 2025 17:54:51. | |
testsaslauthd | File | 17056 bytes | February 23 2022 20:13:56. | |
tmpwatch | File | 36320 bytes | October 12 2019 11:32:29. | |
tsig-keygen | File | 20952 bytes | February 20 2025 09:05:41. | |
unix_chkpwd | File | 37744 bytes | July 01 2025 15:25:20. | |
unix_update | File | 37752 bytes | July 01 2025 15:25:20. |
#!/bin/bash ##CageFS proxyexec wrapper - ver 16 if [[ $EUID -eq 0 ]]; then echo 'Cannot be run as root' exit 1 fi USR=`/usr/bin/whoami` TOKEN=`/bin/cat /var/.cagefs/.cagefs.token` # It's user's tmp directory and write to it is secure procedure # because this script is running only under usual user PIDFILE="/tmp/.cagefs.proxy.$$" USER_INTERRUPT=13 CWD=`pwd` ctrl_c_handler() { if [[ -f "$PIDFILE" ]]; then pid=`/bin/cat $PIDFILE` /bin/rm -f $PIDFILE > /dev/null 2>&1 /bin/kill -s SIGINT "$pid" > /dev/null 2>&1 fi exit $USER_INTERRUPT } if [[ -e /var/.cagefs/origin ]]; then ORIGIN=`/bin/cat /var/.cagefs/origin` REMOTE="/usr/bin/ssh -F /etc/ssh/cagefs-rexec_config $USR@$ORIGIN" $REMOTE CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" CXS $$ "$@" RETVAL=$? else trap 'ctrl_c_handler' 2 CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" CXS $$ "$@" RETVAL=$? /bin/rm -f $PIDFILE > /dev/null 2>&1 fi exit $RETVAL
SILENT KILLER Tool