Warning: include_once(/home/freelife/public_html/wp-content/plugins/wp-super-cache/wp-cache-phase1.php): failed to open stream: No such file or directory in /home/freelife/public_html/wp-content/advanced-cache.php on line 22

Warning: include_once(): Failed opening '/home/freelife/public_html/wp-content/plugins/wp-super-cache/wp-cache-phase1.php' for inclusion (include_path='.:') in /home/freelife/public_html/wp-content/advanced-cache.php on line 22
403WebShell
403Webshell
Server IP : 176.9.105.210  /  Your IP : 216.73.217.21
Web Server : Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
System : Linux server.mediaphic.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : freelife ( 1356)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system,show_source,mail,sendmail,popen,symlink,phpinfo
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/bin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/bin/kcarectl
#!/bin/bash

set -euo pipefail

export PYTHONPATH="/usr/libexec/kcare/python:${PYTHONPATH:-}"

python=
# try different python versions, python3 is preferred
for try_python in python3 /usr/libexec/platform-python python2; do
    python="$(command -v "$try_python" || true)"
    if [ -z "$python" ]; then
        # this version was not found
        continue
    fi

    py_version_output=$("$python" --version 2>&1)
    # remove "Python " prefix and split into array like (3 10 12)
    IFS='.'
    read -ra py_version_array <<<"${py_version_output/* /}"
    py_version_major=${py_version_array[0]}
    py_version_minor=${py_version_array[1]}

    if [[ "$py_version_major" -eq 3 ]] && [[ "$py_version_minor" -le 5 ]]; then
      # python 3.5 and older is not supported
      # in this case we try to use python2
      python=
      continue
    fi

    # take first python which works for us
    break
done

if [ -z "$python" ]; then
  >&2 echo error: supported versions of python3 or python2 executables were not found
  exit 1
fi

cmd=("$python" "-m" "kcarectl.__main__")

env_path="/etc/sysconfig/kcare/kcarectl.env"
if [ -f "$env_path" ]; then
  set -a
  # shellcheck disable=SC1090
  . "$env_path"
  set +a
fi

exec "${cmd[@]}" "$@"

Youez - 2016 - github.com/yon3zu
LinuXploit