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.47
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 /
Zftp /
[ HOME SHELL ]
Name
Size
Permission
Action
zfanon
1.86
KB
-rw-r--r--
zfautocheck
1.29
KB
-rw-r--r--
zfcd
1.89
KB
-rw-r--r--
zfcd_match
1.37
KB
-rw-r--r--
zfcget
2.01
KB
-rw-r--r--
zfclose
90
B
-rw-r--r--
zfcput
2.4
KB
-rw-r--r--
zfdir
3.25
KB
-rw-r--r--
zffcache
662
B
-rw-r--r--
zfgcp
1.91
KB
-rw-r--r--
zfget
1.73
KB
-rw-r--r--
zfget_match
1.5
KB
-rw-r--r--
zfgoto
2.2
KB
-rw-r--r--
zfhere
181
B
-rw-r--r--
zfinit
2.49
KB
-rw-r--r--
zfls
208
B
-rw-r--r--
zfmark
1.41
KB
-rw-r--r--
zfopen
1.16
KB
-rw-r--r--
zfparams
687
B
-rw-r--r--
zfpcp
1.27
KB
-rw-r--r--
zfput
1.41
KB
-rw-r--r--
zfrglob
2.09
KB
-rw-r--r--
zfrtime
1.33
KB
-rw-r--r--
zfsession
1.61
KB
-rw-r--r--
zfstat
1.98
KB
-rw-r--r--
zftp_chpwd
1.35
KB
-rw-r--r--
zftp_progress
2.03
KB
-rw-r--r--
zftransfer
1.53
KB
-rw-r--r--
zftype
553
B
-rw-r--r--
zfuget
3.81
KB
-rw-r--r--
zfuput
2.59
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zfdir
# function zfdir { # Long directory of remote server. # The remote directory is cached. In fact, two caches are kept: # one of the standard listing of the current directory, i.e. zfdir # with no arguments, and another for everything else. # To access the appropriate cache, just use zfdir with the same # arguments as previously. zfdir -r will also re-use the `everything # else' cache; you can always reuse the current directory cache just # with zfdir on its own. # # The current directory cache is emptied when the directory changes; # the other is kept until a new zfdir with a non-empty argument list. # Both are removed when the connection is closed. # # zfdir -f will force the existing cache to be ignored, e.g. if you know # or suspect the directory has changed. # zfdir -d will remove both caches without listing anything. # If you need to pass -r, -f or -d to the dir itself, use zfdir -- -d etc.; # unrecognised options are passed through to dir, but zfdir options must # appear first and unmixed with the others. emulate -L zsh setopt extendedglob [[ $curcontext = :zf* ]] || local curcontext=:zfdir local file opt optlist redir i newargs force local curdir=$zfconfig[curdir_$ZFTP_SESSION] local otherdir=$zfconfig[otherdir_$ZFTP_SESSION] while [[ $1 = -* ]]; do if [[ $1 = - || $1 = -- ]]; then shift; break; elif [[ $1 != -[rfd]## ]]; then # pass options through to ls break; fi optlist=${1#-} for (( i = 1; i <= $#optlist; i++)); do opt=$optlist[$i] case $optlist[$i] in r) redir=1 ;; f) force=1 ;; d) [[ -n $curdir && -f $curdir ]] && rm -f $curdir [[ -n $otherdir && -f $otherdir ]] && rm -f $otherdir zffcache -d return 0 ;; esac done shift done zfautocheck -d || return 1 # directory hack, see zfcd for (( i = 1; i <= $#argv; i++ )); do if [[ $argv[$i] = $HOME || $argv[$i] = $HOME/* ]]; then argv[$i]="~${argv[$i]#$HOME}" fi done if [[ $# -eq 0 && $redir -ne 1 ]]; then # Cache it in the current directory file. This means that repeated # calls to zfdir with no arguments always use a cached file. if [[ -z $curdir ]]; then curdir=${TMPPREFIX}zfcurdir_${ZFTP_SESSION}_$$ zfconfig[curdir_$ZFTP_SESSION]=$curdir fi file=$curdir else # Last directly looked at was not the current one, or at least # had non-standard arguments. if [[ -z $otherdir ]]; then otherdir=${TMPPREFIX}zfotherdir_${ZFTP_SESSION}_$$ zfconfig[otherdir_$ZFTP_SESSION]=$otherdir fi file=$otherdir newargs="$*" if [[ -f $file && -n $newargs && $force -ne 1 ]]; then # Don't use the cached file if the arguments changed. # Even in zfdir -r new_args ... [[ $newargs = $zfconfig[otherargs_$ZFTP_SESSION] ]] || rm -f $file fi [[ -n $newargs ]] && zfconfig[otherargs_$ZFTP_SESSION]=$newargs fi if [[ $force -eq 1 ]]; then rm -f $file # if it looks like current directory has changed, better invalidate # the filename cache, too. (( $# == 0 )) && zffcache -d fi if [[ -n $file && -f $file ]]; then eval ${PAGER:-/usr/bin/pager} \$file else if (zftp test); then # Works OK in subshells zftp dir $* | tee $file | eval ${PAGER:-/usr/bin/pager} else # Doesn't work in subshells (IRIX 6.2 --- why?) zftp dir $* >$file eval ${PAGER:-/usr/bin/pager} $file fi fi # }
Close