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 /
VCS_Info /
[ HOME SHELL ]
Name
Size
Permission
Action
Backends
[ DIR ]
drwxr-xr-x
Backends.zwc
78.81
KB
-rw-r--r--
VCS_INFO_adjust
246
B
-rw-r--r--
VCS_INFO_bydir_detect
1.2
KB
-rw-r--r--
VCS_INFO_check_com
294
B
-rw-r--r--
VCS_INFO_formats
3.86
KB
-rw-r--r--
VCS_INFO_get_cmd
233
B
-rw-r--r--
VCS_INFO_hexdump
373
B
-rw-r--r--
VCS_INFO_hook
1.64
KB
-rw-r--r--
VCS_INFO_maxexports
478
B
-rw-r--r--
VCS_INFO_nvcsformats
423
B
-rw-r--r--
VCS_INFO_patch2subject
3.11
KB
-rw-r--r--
VCS_INFO_quilt
5.65
KB
-rw-r--r--
VCS_INFO_reposub
313
B
-rw-r--r--
VCS_INFO_set
865
B
-rw-r--r--
VCS_INFO_set-patch-format
2.85
KB
-rw-r--r--
vcs_info
3.83
KB
-rw-r--r--
vcs_info_hookadd
450
B
-rw-r--r--
vcs_info_hookdel
882
B
-rw-r--r--
vcs_info_lastmsg
492
B
-rw-r--r--
vcs_info_printsys
1.27
KB
-rw-r--r--
vcs_info_setsys
598
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : VCS_INFO_bydir_detect
## vim:ft=zsh ## Written by Frank Terbeck <ft@bewatermyfriend.org> ## Distributed under the same BSD-ish license as zsh itself. # Helper function for VCS_INFO_detect_* # # Usage: # vcs_comm[detect_need_file]=FILENAMES VCS_INFO_bydir_detect DIRNAME # where DIRNAME is a directory name and FILENAMES is a space-separated list # of filenames. # # If any parent directory of the current working directory, other than the root # directory, contains a subdirectory named DIRNAME that contains a file whose name # is in FILENAMES, set vcs_comm[basedir] to the path of that parent directory and # return true. Otherwise, return false. setopt localoptions NO_shwordsplit local dirname=$1 local basedir="." file basedir=${basedir:P} while [[ ${basedir} != '/' ]]; do [[ -r ${basedir} ]] || return 1 if [[ -n ${vcs_comm[detect_need_file]} ]] ; then [[ -d ${basedir}/${dirname} ]] && { for file in ${(s: :)${vcs_comm[detect_need_file]}}; do [[ -e ${basedir}/${dirname}/${file} ]] && break 2 done } else [[ -d ${basedir}/${dirname} ]] && break fi basedir=${basedir:h} done [[ ${basedir} == "/" ]] && return 1 vcs_comm[basedir]=${basedir} return 0
Close