Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data /
core /
vendor /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
carbon
3.25
KB
-rwxr-xr-x
2022-09-13 12:23
patch-type-declarations
3.36
KB
-rwxr-xr-x
2022-09-13 12:23
php-parse
3.27
KB
-rwxr-xr-x
2022-09-13 12:23
phpunit
3.61
KB
-rwxr-xr-x
2022-09-13 12:23
psysh
3.24
KB
-rwxr-xr-x
2022-09-13 12:23
sail
943
B
-rwxr-xr-x
2022-09-13 12:23
var-dump-server
3.33
KB
-rwxr-xr-x
2022-09-13 12:22
Save
Rename
#!/usr/bin/env sh # Support bash to support `source` with fallback on $0 if this does not run with bash # https://stackoverflow.com/a/35006505/6512 selfArg="$BASH_SOURCE" if [ -z "$selfArg" ]; then selfArg="$0" fi self=$(realpath $selfArg 2> /dev/null) if [ -z "$self" ]; then self="$selfArg" fi dir=$(cd "${self%[/\\]*}" > /dev/null; cd '../laravel/sail/bin' && pwd) if [ -d /proc/cygdrive ]; then case $(which php) in $(readlink -n /proc/cygdrive)/*) # We are in Cygwin using Windows php, so the path must be translated dir=$(cygpath -m "$dir"); ;; esac fi export COMPOSER_RUNTIME_BIN_DIR="$(cd "${self%[/\\]*}" > /dev/null; pwd)" # If bash is sourcing this file, we have to source the target as well bashSource="$BASH_SOURCE" if [ -n "$bashSource" ]; then if [ "$bashSource" != "$0" ]; then source "${dir}/sail" "$@" return fi fi "${dir}/sail" "$@"