SILENT KILLERPanel

Current Path: > > > lib > .build-id > d2


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 ]

Files and Folders in: ///lib/.build-id/d2


Warning: filesize(): stat failed for ///lib/.build-id/d2/5b460efd4edd6e04d182126d575cccc7c4473b in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for ///lib/.build-id/d2/5b460efd4edd6e04d182126d575cccc7c4473b in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for ///lib/.build-id/d2/7c1b4bbfb54edb5a38f4b2e090492391fdbef4 in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for ///lib/.build-id/d2/7c1b4bbfb54edb5a38f4b2e090492391fdbef4 in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for ///lib/.build-id/d2/8b3f9244508ae76bc04688df8f87b9a3d5920b in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for ///lib/.build-id/d2/8b3f9244508ae76bc04688df8f87b9a3d5920b in /home/codekrsu/techflix.lk/cmd2.php on line 137

Warning: filesize(): stat failed for ///lib/.build-id/d2/c7c78a279fbe34f948bd13886f55497f896967 in /home/codekrsu/techflix.lk/cmd2.php on line 136

Warning: filemtime(): stat failed for ///lib/.build-id/d2/c7c78a279fbe34f948bd13886f55497f896967 in /home/codekrsu/techflix.lk/cmd2.php on line 137
NameTypeSizeLast ModifiedActions
02cf250c023c55cb8d3af403c30ddf812d1be4 File 126464 bytes July 26 2023 14:39:37.
11780b2ddc5f170f067b6be1876eda3fa9d929 File 12024 bytes July 26 2023 14:39:37.
11f32b0bf84f293960f04bbb4cc9dd4c26c7de File 11880 bytes October 12 2019 00:29:32.
41def8e569afa12efc32e5b8ef85d4a644e4b1 File 93352 bytes April 01 2023 08:44:39.
42f3d2cd9953c704e0a40e42261e067bf829b6 File 2397960 bytes July 26 2023 14:09:05.
46db773dbe2d674c89eacf849270450595caa5 File 52736 bytes July 26 2023 14:31:59.
517ef443f55d0dc47bfc17edb78304e61711ab File 502224 bytes March 24 2025 20:57:54.
5b460efd4edd6e04d182126d575cccc7c4473b File bytes January 01 1970 00:00:00.
748c345637f9ac05d67f2e2f5b86cf9894b091 File 13616 bytes November 20 2019 17:02:08.
7c1b4bbfb54edb5a38f4b2e090492391fdbef4 File bytes January 01 1970 00:00:00.
7f22924f69a02299e533d3ce2832ecaeaf1935 File 1056 bytes May 26 2025 11:13:23.
8a42bac888d3e919c010f403e3dd7cc3fd0eba File 639672 bytes March 31 2025 10:38:35.
8b3f9244508ae76bc04688df8f87b9a3d5920b File bytes January 01 1970 00:00:00.
96d82932c44bd67fcf0e3bed928a8e15fa6120 File 11648 bytes July 26 2023 14:48:52.
a9dce5a628b3f1ad913187ec1c11e491c37ff0 File 11784 bytes April 24 2025 07:53:53.
ac647c8fce9bdd0b04fc6d3b0ca5e4d8626470 File 11824 bytes April 28 2025 17:36:13.
bbe88d6edce06ee8cdda1ec5e45c691c578d82 File 87024 bytes June 26 2024 13:55:25.
c7c78a279fbe34f948bd13886f55497f896967 File bytes January 01 1970 00:00:00.
c9a525b9d611d491138e9f65b48cedb059ae19 File 3919024 bytes April 28 2025 17:36:13.
f00dc85766708e3ed59223818002d8405e3dc1 File 37744 bytes January 28 2025 01:38:59.
f15bbf00953379002255619802e6f1f9cf7d20 File 21160 bytes June 29 2022 09:12:12.

Reading File: ///lib/.build-id/d2/7f22924f69a02299e533d3ce2832ecaeaf1935

#!/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" CAGEFS_ENTER $$ "$@"
    RETVAL=$?
else
    trap 'ctrl_c_handler' 2
    CAGEFS_TOKEN="$TOKEN" /usr/sbin/proxyexec -c cagefs.sock "$USR" "$CWD" CAGEFS_ENTER $$ "$@"
    RETVAL=$?
    /bin/rm -f $PIDFILE > /dev/null 2>&1
fi

exit $RETVAL

SILENT KILLER Tool