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 /
Darwin /
[ HOME SHELL ]
Name
Size
Permission
Action
_caffeinate
395
B
-rw-r--r--
_defaults
1.69
KB
-rw-r--r--
_fink
5.27
KB
-rw-r--r--
_fs_usage
933
B
-rw-r--r--
_hdiutil
22.02
KB
-rw-r--r--
_mac_applications
136
B
-rw-r--r--
_mac_files_for_application
1.96
KB
-rw-r--r--
_mdfind
991
B
-rw-r--r--
_mdls
464
B
-rw-r--r--
_mdutil
723
B
-rw-r--r--
_networksetup
13.84
KB
-rw-r--r--
_nvram
810
B
-rw-r--r--
_open
2.73
KB
-rw-r--r--
_osascript
967
B
-rw-r--r--
_otool
2.18
KB
-rw-r--r--
_pbcopy
615
B
-rw-r--r--
_plutil
1.86
KB
-rw-r--r--
_qtplay
525
B
-rw-r--r--
_retrieve_mac_apps
3.23
KB
-rw-r--r--
_say
2.99
KB
-rw-r--r--
_sc_usage
425
B
-rw-r--r--
_scselect
945
B
-rw-r--r--
_scutil
1.96
KB
-rw-r--r--
_softwareupdate
2.28
KB
-rw-r--r--
_sw_vers
186
B
-rw-r--r--
_system_profiler
1.28
KB
-rw-r--r--
_trash
855
B
-rw-r--r--
_xcode-select
460
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _mac_files_for_application
#autoload _mac_rsrc_check() { [[ ! -s "$REPLY/..namedfork/rsrc" ]] && return 1 if [[ -x /Developer/Tools/GetFileInfo ]]; then local ftype="$(command /Developer/Tools/GetFileInfo -t $REPLY)" ftype="${ftype//\"/}" [[ -n "$types[(r)$ftype]" ]] else grep --quiet "\(${(j/\|/)types}\)" "$REPLY/..namedfork/rsrc" fi } _mac_parse_info_plist() { # For now, awk is used because builtin function "read" was too slow. # '<' is used for the delimiter because some Info.plist files use CR as # newline but read doesn't treat them as so local s=' BEGIN { RS="<" } /^key>/ { sub(/key>/, ""); reading_key=$0 } /^string>/ { sub(/string>/, "") if (reading_key == "CFBundleTypeExtensions") exts=exts " \"" $0 "\"" if (reading_key == "CFBundleTypeOSTypes") types=types " \"" $0 "\"" } END { print "exts=(" exts ")\ntypes=(" types ")" } ' command awk $s "$app_path/Contents/Info.plist" | while read; do eval "$REPLY" done } # Try to complete files for the specified application. _mac_files_for_application() { local -a opts zparseopts -D -a opts q n 1 2 o+: P: S: r: R: W: x+: X+: M+: F: J+: V+: local app_path _retrieve_mac_apps app_path="${_mac_apps[(r)*/$1(|.app)]:-$1}" local -a glob_patterns glob_patterns=() # Try to get extensions from "Info.plist" XML file. if [[ -f "$app_path/Contents/Info.plist" ]]; then local -a exts types _mac_parse_info_plist if [[ -n "$exts[(r)\*]" ]]; then glob_patterns=( "*" ) else if (( #exts != 0 )); then glob_patterns+=( "*.(${(j/|/)exts})(N)" ) fi if (( #types != 0 )); then glob_patterns+=( "^*.[[:alnum:]]##(.Ne:_mac_rsrc_check:)" ) fi fi else glob_patterns=( "*" ) fi case ${#glob_patterns} in 0) return 1 ;; 1) _files "$opts[@]" -g "$glob_patterns[1]" ;; *) _files "$opts[@]" -g "{${(j/,/)glob_patterns}}" ;; esac } _mac_files_for_application "$@"
Close