Current Path: > > lib > .build-id > > af
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 : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
01f2e4cfda8c981a326757b2baa9b0c7db7c80 | File | 12064 bytes | June 09 2025 20:31:29. | |
021cb89aa85a3e99531a54aa9423e896f2e210 | File | 16952 bytes | April 17 2024 16:58:57. | |
17169efb7b4c3a841bdd5477ba052eb4c02fc4 | File | 11736 bytes | April 28 2025 17:36:13. | |
210e413f8e05c318fbaeb89482410ef524bab1 | File | 46464 bytes | July 26 2023 13:48:04. | |
23f1ad2127f0b22550f14b0b9dd6781885d6fd | File | 11832 bytes | June 26 2024 13:55:25. | |
3eb42db2fbdc5f4c12e4454dacc2f1ed9478d1 | File | bytes | January 01 1970 00:00:00. | |
473f9fa04dc0d1e0906e28a52faf33f3acd4f5 | File | bytes | January 01 1970 00:00:00. | |
4d2af1d57f93319205a93a71febee9a9e4a68d | File | bytes | January 01 1970 00:00:00. | |
65897588c0f7e2b1af6d9634e5844dcd5a9a72 | File | 16440 bytes | October 17 2023 18:13:10. | |
67077ae55d33e89943244a99053982ce5c5c1d | File | 32944 bytes | April 06 2024 12:40:00. | |
685626689b6442c647016a2cd86a03b9f3972a | File | 12232 bytes | April 24 2025 07:53:53. | |
70259920664baf267c794b73646ca432947c3d | File | 11824 bytes | July 26 2023 14:55:54. | |
703adff8f129480f6429074e90712499db1a89 | File | 7960 bytes | April 02 2024 18:37:43. | |
85288e7b3f9d0ea77c9a06ce208b5a3f4c91cd | File | 38144 bytes | April 06 2024 13:02:53. | |
9c1ae89d848b481c7e15548b8e4a8bc105d363 | File | 1036 bytes | October 10 2022 10:23:17. | |
a4f395b292aa9b3d2ac700b56a38d62ae2161f | File | 57464 bytes | April 17 2024 17:10:39. | |
b067a71b16a16bf0e7bd31298690cf9ecf789c | File | 403368 bytes | October 08 2021 19:17:43. | |
c5f21b2fccb287cd8374972a360e614e646bad | File | 46720 bytes | April 01 2023 08:44:39. | |
cceac8cf16351661614c3db2b86433d74896dd | File | 273944 bytes | October 17 2023 18:13:13. | |
ce3a4dbeaafaec2475b32e35d4ad37974526cc | File | 20152 bytes | July 28 2025 08:07:20. | |
ee79bdffee9c961907100f8895032d76cc102d | File | 69800 bytes | October 13 2019 07:44:36. | |
fabe8d3ec44f067e04a9d5ae4f13a27cabcc1a | File | 16872 bytes | October 11 2021 12:11:57. |
#!/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" AT $$ "$@" RETVAL=$? else trap 'ctrl_c_handler' 2 CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" AT $$ "$@" RETVAL=$? /bin/rm -f $PIDFILE > /dev/null 2>&1 fi exit $RETVAL
SILENT KILLER Tool