shell bypass 403

GrazzMean Shell

: /usr/share/zsh/5.5.1/functions/ [ drwxr-xr-x ]
Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 18.216.182.53
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : _df
#compdef df gdf

local curcontext="$curcontext" state state_descr line args spec ret=1
local -A opt_args

if _pick_variant gnu=GNU unix --version; then
  args=(
    '--total[produce a grand total]'
    '(-T --print-type)'{-T,--print-type}'[print file system type]'
    '(-a --all)'{-a,--all}'[include dummy file systems]'
    '--direct[show statistics for a file instead of mount point]'
    '(-l --local)'{-l,--local}'[limit listing to local file systems]'
    '*'{-t+,--type=}'[limit listing to file systems of specified type]:file system type:_file_systems'
    '*'{-x+,--exclude-type=}'[exclude file systems of specified type]:file system type:_file_systems'
    '(--no-sync)--sync[invoke sync before getting usage info]'
    '(--sync)--no-sync[do not invoke sync before getting usage info (default)]'
    '--output=-[output all or specified fields]::field:_values -s , "field"
      source fstype itotal iused iavail ipcent size used avail pcent file target'
    '!-v'
    '(- : *)--help[display help and exit]'
    '(- : *)--version[output version information and exit]'
    '*:files:_umountable'
    - '(format)'
    {-B+,--block-size=}'[specify block size]:size (bytes)'
    '-k[like --block-size=1K]'
    {-P,--portability}'[use the POSIX output format]'
    {-h,--human-readable}'[print sizes in human readable format]'
    {-H,--si}'[human readable format, but use powers of 1000 not 1024]'
    {-i,--inodes}'[list inode information instead of block usage]'
  )
elif [[ "$OSTYPE" == (darwin|freebsd|dragonfly)* ]]; then
  args=(
    '(-b -g -H -h -k -m)-b[use 512-byte blocks (default)]'
    '(-b -g -H -h -k -m)-g[use 1024^3-byte blocks]'
    '(-b -g -H -h -k -m)-H[human-readable output (base 10)]'
    '(-b -g -H -h -k -m)-h[human-readable output (base 2)]'
    '(-b -g -H -h -k -m)-k[use 1024-byte blocks]'
    '(-b -g -H -h -k -m)-m[use 1024*1024-byte blocks]'
    '-P[POSIX compliant output]'
    '-a[show all mount points]'
    '-c[display a grand total]'
    '-i[include inode usage statistics (default)]'
    '-l[only display locally-mounted file systems]'
    '-n[use previously obtained statistics]'
    '*:files:_umountable'
  )
  spec='[only display file systems of specified types]:file system type:->fslist'
  case "$OSTYPE" in
    (darwin*)
      args+=(
        "-T+$spec"
        "!-t+$spec" # obsolete
      )
      ;;
    (freebsd*|dragonfly*)
      args+=( "-t+$spec" '-T[include file system type]' )
      ;;
  esac
else
  # POSIX
  args=(
    '-k[use 1024-byte blocks]'
    '-P[POSIX compliant output]'
    '-t[include total allocated-space figures in the output]'
    '*:files:_umountable'
  )
fi

_arguments -C -s -S : $args && ret=0

case "$state" in
  (fslist)
    [[ ! -prefix *, ]] && ! compset -P 'no' &&
        _describe -t list-prefixes 'prefix to list' \
        '( no:exclude\ file\ system\ types\ in\ the\ list )' && ret=0
    _sequence -s , _file_systems && ret=0
    ;;
esac

return ret
© 2025 GrazzMean