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

name : _shutdown
#compdef shutdown

local -a args

if [[ -d /etc/systemd ]]; then
  _arguments \
    '--help[display usage information]' \
    '(-H --halt)'{-H,--halt}'[halt the machine]' \
    '(-P --poweroff -h)'{-P,--poweroff,-h}'[power-off the machine (default)]' \
    '(-r --reboot)'{-r,--reboot}'[reboot the machine]' \
    "(--no-wall)-k[don't shutdown, just write wall message]" \
    "(-k)--no-wall[don't send a wall message]" \
    '-c[cancel pending shutdown]' \
    '1: :_guard "^-*" "time (now/hh\:mm/+mins)"' \
    '*:warning message'
  return
fi

case $OSTYPE in
  *bsd*|dragonfly*|linux*|darwin*)
    args=(
      '-h[halt the system after shutdown]'
      '-r[reboot the system]'
      '-k[kick everybody off]'
      '-n[prevent file system cache from being flushed]'
      '1: :_guard "^-*" "time (now/hh\:mm/+mins)"'
      '*:warning message'
    )
  ;|
  *bsd*|dragonfly*|linux*)
    args=(
      '-p[turn off power after shutdown]'
    )
  ;|
  (net|open)bsd*)
    args+=(
      '-d[cause system to perform a dump]'
      '-f[create /fastboot so that file systems will not be checked during the next boot]'
    )
  ;|
  freebsd*|dragonfly*)
    args+=(
      '-o[execute halt or reboot instead of sending a signal to init]'
    )
  ;;
  netbsd*)
    args+=(
      '-b[specify boot string to pass to reboot]:boot string'
      '-v[enable verbose console messages]'
      '-x[enable debug console messages]'
      '-z[silence some console messages]'
      '-D[prevent shutdown from detaching from the tty]'
    )
  ;;
  darwin*)
    args+=(
      '-o[execute halt or reboot instead of sending a signal to launchd]'
      '-s[put the system to sleep]'
      '-u[with -h, wait 5 minutes before removing power]'
    )
  ;;
  solaris2.<11->) args=( '(-i)-r[reboot]' ) ;&
  solaris*)
    args+=(
      '(-r)-i+[specify init-state]:init state:((0\:stop 1\:administrative s\:single\ user 5 6\:reboot))'
      '-y[pre-answer yes to confirmation question]'
      '-g+[specify grace period]:grace period (seconds) [60]'
    )
  ;;
esac

_arguments $args
© 2025 GrazzMean