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

name : select-quoted
# Text object for matching characters between a particular delimiter
#
# So for example, given "text", the vi command vi" will select
# all the text between the double quotes
#
# The following is an example of how to enable this:
#     autoload -U select-quoted
#     zle -N select-quoted
#     for m in visual viopp; do
#	for c in {a,i}{\',\",\`}; do
#	  bindkey -M $m $c select-quoted
#	done
#     done

setopt localoptions noksharrays

local matching=${${1:-$KEYS}[2]}
local -i start=CURSOR+2 end=CURSOR+2 found=0 alt=0 count=0

if ((REGION_ACTIVE )); then
  if (( MARK < CURSOR )); then
    start=MARK+2
  else
    end=MARK+2
  fi
fi

[[ $BUFFER[CURSOR+1] = $matching && $BUFFER[CURSOR] != \\ ]] && count=1
while (( (count || ! alt) && --start )) && [[ $BUFFER[start] != $'\n' ]]; do
  if [[ $BUFFER[start] = "$matching" ]]; then
    if [[ $BUFFER[start-1] = \\ ]]; then
      (( start-- ))
    elif (( ! found )); then
      found=start
    else
      (( ! alt )) && alt=start
      (( count && ++count ))
    fi
  fi
done

for (( start=CURSOR+2; ! found && start+1 < $#BUFFER; start++ )); do
  case $BUFFER[start] in
    $'\n') return 1 ;;
    \\) (( start++ )) ;;
    "$matching")
      (( end=start+1, found=start ))
    ;;
  esac
done

[[ $BUFFER[end-1] = \\ ]] && (( end++ ))
until [[ $BUFFER[end] == "$matching" ]]; do
  [[ $BUFFER[end] = \\ ]] && (( end++ ))
  if [[ $BUFFER[end] = $'\n' ]] || (( ++end > $#BUFFER )); then
    end=0
    break
  fi
done

if (( alt && (!end || count == 2) )); then
  end=found
  found=alt
fi
(( end )) || return 1

[[ ${${1:-$KEYS}[1]} = a ]] && (( found-- )) || (( end-- ))
(( REGION_ACTIVE = !!REGION_ACTIVE ))
[[ $KEYMAP = vicmd ]] && (( REGION_ACTIVE && end-- ))
MARK=found
CURSOR=end
© 2025 GrazzMean