Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
bug /
[ HOME SHELL ]
Name
Size
Permission
Action
apache2
[ DIR ]
drwxr-xr-x
apache2-bin
[ DIR ]
drwxr-xr-x
apt
[ DIR ]
drwxr-xr-x
bash-completion
[ DIR ]
drwxr-xr-x
clamav
[ DIR ]
drwxr-xr-x
clamav-base
[ DIR ]
drwxr-xr-x
clamav-freshclam
[ DIR ]
drwxr-xr-x
console-setup
[ DIR ]
drwxr-xr-x
console-setup-linux
[ DIR ]
drwxr-xr-x
cron
[ DIR ]
drwxr-xr-x
dbus
[ DIR ]
drwxr-xr-x
file
[ DIR ]
drwxr-xr-x
grub-common
[ DIR ]
drwxr-xr-x
grub-efi-amd64-bin
[ DIR ]
drwxr-xr-x
grub-pc
[ DIR ]
drwxr-xr-x
grub-pc-bin
[ DIR ]
drwxr-xr-x
grub2-common
[ DIR ]
drwxr-xr-x
init-system-helpers
[ DIR ]
drwxr-xr-x
initramfs-tools
[ DIR ]
drwxr-xr-x
keyboard-configuration
[ DIR ]
drwxr-xr-x
libapache2-mod-php8.3
[ DIR ]
drwxr-xr-x
libmagic1t64
[ DIR ]
drwxr-xr-x
logrotate
[ DIR ]
drwxr-xr-x
man-db
[ DIR ]
drwxr-xr-x
mdadm
[ DIR ]
drwxr-xr-x
media-types
[ DIR ]
drwxr-xr-x
needrestart
[ DIR ]
drwxr-xr-x
php8.3
[ DIR ]
drwxr-xr-x
php8.3-cli
[ DIR ]
drwxr-xr-x
php8.3-common
[ DIR ]
drwxr-xr-x
php8.3-curl
[ DIR ]
drwxr-xr-x
php8.3-fpm
[ DIR ]
drwxr-xr-x
php8.3-gd
[ DIR ]
drwxr-xr-x
php8.3-mbstring
[ DIR ]
drwxr-xr-x
php8.3-mysql
[ DIR ]
drwxr-xr-x
php8.3-opcache
[ DIR ]
drwxr-xr-x
php8.3-readline
[ DIR ]
drwxr-xr-x
php8.3-xml
[ DIR ]
drwxr-xr-x
php8.3-zip
[ DIR ]
drwxr-xr-x
polkitd
[ DIR ]
drwxr-xr-x
procps
[ DIR ]
drwxr-xr-x
systemd
[ DIR ]
drwxr-xr-x
udev
[ DIR ]
drwxr-xr-x
usb-modeswitch-data
[ DIR ]
drwxr-xr-x
usbutils
[ DIR ]
drwxr-xr-x
vim
[ DIR ]
drwxr-xr-x
vim-tiny
[ DIR ]
drwxr-xr-x
cryptsetup
763
B
-rwxr-xr-x
cryptsetup-bin
763
B
-rwxr-xr-x
cryptsetup-initramfs
763
B
-rwxr-xr-x
dpkg
1.18
KB
-rwxr-xr-x
libcryptsetup12
763
B
-rwxr-xr-x
multipath-tools
240
B
-rwxr-xr-x
screen
684
B
-rwxr-xr-x
vsftpd
1.32
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dpkg
#!/bin/sh get_vendor() { local origin="$DPKG_ROOT/etc/dpkg/origins/default" local vendor if [ -n "$DEB_VENDOR" ]; then vendor="$DEB_VENDOR" elif [ -e "$origin" ]; then vendor=$(sed -ne 's/^Vendor: *\([^ ]\+\) */\1/p' "$origin" | tr A-Z a-z) fi echo "${vendor:-default}" } check_merged_usr_via_aliased_dirs() { local vendor vendor=$(get_vendor) case "$vendor" in debian) # In Debian some people have gotten so offended by the following _warning_ # that they have resorted to bullying and abuse. Life's too short, sorry. return ;; ubuntu) # Ubuntu does not seem interested in it. return ;; esac for d in /bin /sbin /lib /lib32 /libo32 /libx32 /lib64; do linkname="$(readlink $d)" if [ "$linkname" = "usr$d" ] || [ "$linkname" = "/usr$d" ]; then echo "This system uses merged-usr-via-aliased-dirs, going behind dpkg's" >&3 echo "back, breaking its core assumptions. This can cause silent file" >&3 echo "overwrites and disappearances, and its general tools misbehavior." >&3 echo "See <https://wiki.debian.org/Teams/Dpkg/FAQ#broken-usrmerge>." >&3 break fi done } check_merged_usr_via_aliased_dirs
Close