Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
initramfs-tools /
hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
dmsetup
506
B
-rwxr-xr-x
2022-10-19 19:37
fsck
2.16
KB
-rwxr-xr-x
2024-08-22 19:30
intel_microcode
4.73
KB
-rwxr-xr-x
2025-03-08 12:15
keymap
687
B
-rwxr-xr-x
2020-08-31 23:59
klibc-utils
646
B
-rwxr-xr-x
2021-12-26 17:51
kmod
432
B
-rwxr-xr-x
2022-12-09 22:58
resume
3.14
KB
-rwxr-xr-x
2022-06-20 13:04
thermal
1.29
KB
-rwxr-xr-x
2024-08-22 18:38
udev
1.69
KB
-rwxr-xr-x
2025-03-06 14:56
zz-busybox
1015
B
-rwxr-xr-x
2022-11-04 16:59
Save
Rename
#!/bin/sh # This hook copies busybox binary into the initramfs directory # and creates all necessary links to it. # It should be placed last into the hooks directory, in order to # not overwrite commands which are provided by other means. set -e case "${1:-}" in prereqs) echo ""; exit 0;; esac BB_BIN=/bin/busybox [ n = "$BUSYBOX" ] && exit 0 [ -r /usr/share/initramfs-tools/hook-functions ] || exit 0 . /usr/share/initramfs-tools/hook-functions if [ -f $DESTDIR/bin/sh ] && cmp -s $DESTDIR/bin/sh $BB_BIN ; then # initramfs copies busybox into /bin/sh, undo this rm -f $DESTDIR/bin/sh fi rm -f $DESTDIR/bin/busybox # for compatibility with old initramfs copy_exec $BB_BIN /bin/busybox for alias in $($BB_BIN --list-long); do alias="${alias#/}" case "$alias" in # strip leading /usr, we don't use it usr/*) alias="${alias#usr/}" ;; */*) ;; *) alias="bin/$alias" ;; # make it into /bin esac [ -e "$DESTDIR/$alias" ] || \ ln "$DESTDIR/bin/busybox" "$DESTDIR/$alias" done