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: 3.15.179.238
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : _cdr
#compdef cdr

local expl insert_string
integer default insert

zstyle -t ':chpwd:' recent-dirs-default && default=1
if (( default )); then
  zstyle -s ":completion:${curcontext}:" recent-dirs-insert insert_string
  case $insert_string in
    (both)
    insert=4
    ;;

    (fallback)
    insert=3
    ;;

    (always)
    insert=2
    ;;

    ([tT]*|1|[yY]*)
    insert=1
    ;;

    (*)
    insert=0
  esac
fi

# See if we should fall back to cd completion.
if [[ default -ne 0 && insert -lt 2 && \
  ( CURRENT -ne 2 || (-n $words[2] && $words[2] != <->) ) ]]; then
  $_comps[cd] "$@"
  return
fi

local -a values keys

if (( insert )); then
  # insert the actual directory, not the number
  values=(${${(f)"$(cdr -l)"}##<-> ##})
  # Suppress the usual space suffix, since there's no further argument
  # and it's useful to be able to edit the directory e.g. add /more/stuff.
  if _wanted -V recent-dirs expl 'recent directory' compadd -S '' -Q -a values
  then
    (( insert == 4 )) || return 0
  fi

  (( insert >= 3 )) || return
  $_comps[cd] "$@"
else
  values=(${${(f)"$(cdr -l)"}/ ##/:})
  keys=(${values%%:*})

  _describe -t dir-index 'recent directory index' values keys -V unsorted
fi
© 2025 GrazzMean