Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
snap /
core /
17247 /
usr /
share /
initramfs-tools /
hooks /
[ HOME SHELL ]
Name
Size
Permission
Action
busybox
506
B
-rwxr-xr-x
fixrtc
412
B
-rwxr-xr-x
framebuffer
528
B
-rwxr-xr-x
fsck
2.41
KB
-rwxr-xr-x
klibc-utils
678
B
-rwxr-xr-x
klibc^i-t
743
B
-rwxr-xr-x
kmod
424
B
-rwxr-xr-x
resize
387
B
-rwxr-xr-x
resume
1.29
KB
-rwxr-xr-x
ubuntu-core-rootfs
335
B
-rwxr-xr-x
udev
1.72
KB
-rwxr-xr-x
zz-busybox-initramfs
1.45
KB
-rwxr-xr-x
zz-dhclient
411
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zz-busybox-initramfs
#!/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=/usr/lib/initramfs-tools/bin/busybox [ -x $BB_BIN ] || exit 0 if [ -f /etc/initramfs-tools/initramfs.conf ]; then . /etc/initramfs-tools/initramfs.conf [ n = "$BUSYBOX" ] && exit 0 fi [ -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 # Busybox is configured to prefer its own applets, so remove # duplication from klibc. name="${alias##*/}" if [ -e "$DESTDIR/$alias" ] && cmp -s "/usr/lib/klibc/bin/$name" "$DESTDIR/$alias"; then rm -f "$DESTDIR/$alias" [ "${verbose}" = "y" ] && echo "Preferring busybox $alias over klibc" || true fi [ -e "$DESTDIR/$alias" ] || \ ln "$DESTDIR/bin/busybox" "$DESTDIR/$alias" done
Close