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 : _vmctl
#compdef vmctl local -a subcommands alts _vm_names() { local expl _description virtual-machines expl 'virtual machine' compadd "$@" "$expl[@]" - ${${${(@f)"$(_call_program virtual-machines vmctl status)"}[2,-1]}##* } } _vm_switches() { local expl _description virtual-switches expl 'virtual switch' [[ -r /etc/vm.conf ]] && compadd "$@" "$expl[@]" - ${${${(M)${(f)"$(</etc/vm.conf)"}:#switch *}##switch ##\"#}%%\"# *} } subcommands=( console:'connect to the console of the VM' create:'create a VM disk image' load:'load additional configuration' log:'change logging verbosity' pause:'pause a VM' receive:'receive a VM from stdin' reload:'remove stopped VMs and reload config' reset:'reset specified component' send:'send VM to stdout and terminate it' {show,status}:'list VMs running or just the specified id' start:'start a VM' stop:'stop a VM' unpause:'resume a VM' wait:'wait until specified VM has stopped' ) if (( CURRENT == 2 )); then _describe subcommand subcommands else local curcontext="${curcontext%:*}-${words[2]}:" shift words; (( CURRENT-- )) case $words[1] in console|pause|send|show|status|unpause|wait) _vm_names ;; create) compset -P '(raw|qcow2):' || alts=( 'prefixes:prefix:compadd -S: raw qcow2' ) _arguments \ '-s+[specify size]:size' \ '(-i)-b+[specify base disk]:base image:_files' \ '(-b)-i+[copy and convert input disk]:disk image:_files' \ '1:disk: _alternative "files:path:_files" $alts' ;; load) _arguments ':configuration file:_files' ;; log) _arguments ':logging verbosity:(brief verbose)' ;; receive) _arguments ':name: ' ;; reset) _arguments ':reset option:(( all\:"reset the running state" switches\:"reset the configured switches" vms\:"reset and terminate all VMs" ))' ;; start) _arguments -s \ '-B+[force system to boot from specified device for this boot]:device:(cdrom disk net)' \ '-b+[boot with the specified kernel or BIOS image]:boot image:_files' \ '-c[automatically connect to the VM console]' \ '*-d+[disk image file]:disk image:_files' \ '-i+[number of network interfaces]:number: ' \ '-L[add a local network interface]' \ '-m+[specify memory size]:memory size (megabytes) [512]' \ '-n+[specify switch to attach]: :_vm_switches' \ '-r+[specify ISO image file for virtual CD-ROM]:ISO image:_files -g "*.iso(-.)"' \ '-t+[use existing VM as a template]: :_vm_names' \ '1: :_vm_names' ;; stop) _arguments \ '(1)-a[stop all running VMs]' \ '-f[forcefully stop without attempting a graceful shutdown]' \ '-w[wait until the VM has been terminated]' \ '(-a)1: :_vm_names' ;; *) _default ;; esac fi
Close