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 /
Misc /
[ HOME SHELL ]
Name
Size
Permission
Action
add-zle-hook-widget
5.25
KB
-rw-r--r--
add-zsh-hook
1.9
KB
-rw-r--r--
allopt
783
B
-rw-r--r--
checkmail
817
B
-rwxr-xr-x
colors
3.34
KB
-rw-r--r--
getjobs
827
B
-rw-r--r--
harden
96
B
-rwxr-xr-x
is-at-least
2.23
KB
-rw-r--r--
mere
2.02
KB
-rw-r--r--
nslookup
1.11
KB
-rw-r--r--
promptnl
3.23
KB
-rw-r--r--
regexp-replace
1.01
KB
-rw-r--r--
relative
888
B
-rw-r--r--
run-help
3
KB
-rwxr-xr-x
run-help-git
144
B
-rw-r--r--
run-help-ip
862
B
-rwxr-xr-x
run-help-openssl
59
B
-rw-r--r--
run-help-p4
78
B
-rw-r--r--
run-help-sudo
56
B
-rw-r--r--
run-help-svk
52
B
-rw-r--r--
run-help-svn
52
B
-rw-r--r--
sticky-note
4.59
KB
-rwxr-xr-x
tetris
5.31
KB
-rw-r--r--
tetriscurses
10.76
KB
-rw-r--r--
xtermctl
4.09
KB
-rw-r--r--
zargs
8.73
KB
-rw-r--r--
zcalc
11.92
KB
-rwxr-xr-x
zed
4
KB
-rwxr-xr-x
zkbd
7.12
KB
-rwxr-xr-x
zmathfuncdef
2.23
KB
-rw-r--r--
zmv
11.14
KB
-rw-r--r--
zrecompile
6.04
KB
-rw-r--r--
zstyle+
1.24
KB
-rw-r--r--
ztodo
1.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zstyle+
# This makes defining styles a bit simpler by using a single `+' as a # special token that allows one to append a context name to the # previously used context name. Like this: # # zstyle+ ':foo:bar' style1 value1 \ # + ':baz' style2 value2 \ # + ':frob' style3 value3 # # This defines style1 with value1 for the context :foo:bar as usual. # But it also defines styles2 with value2 for the context :foo:bar:baz # and style3 with value3 for :foo:bar:frob. # Of course, any of the sub-contexts after the plus signs may be # empty strings to re-use the previous context unchanged. # # If you don't want to change all your calls to `zstyle' to use # `zstyle+' you can use an alias `alias zstyle=zstyle+' and make sure # the completion functions are autoloaded without alias expansion (the # -U option to the autoload builtin). The completion system normally # loads its functions with without alias expansion. case "$1" in -*) zstyle "$@";; *) setopt localoptions noksharrays integer i local context="$1" 1='' for ((i=2; $#; ++i)); do if [[ $i -gt $# || "$argv[i]" == '+' ]]; then zstyle "$context${(@)argv[1,i-1]}" shift "i > $# ? $# : i" # Stupid shift error on i > $# i=1 fi done;; esac
Close