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 /
.trash /
vendor /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
carbon
3.25
KB
-rw-r--r--
2025-09-15 01:53
carbon.bat
133
B
-rw-r--r--
2025-09-15 01:53
patch-type-declarations
3.35
KB
-rw-r--r--
2025-09-15 01:53
patch-type-declarations.bat
150
B
-rw-r--r--
2025-09-15 01:53
php-parse
3.27
KB
-rw-r--r--
2025-09-15 01:53
php-parse.bat
136
B
-rw-r--r--
2025-09-15 01:53
phpunit
3.6
KB
-rw-r--r--
2025-09-15 01:53
phpunit.bat
134
B
-rw-r--r--
2025-09-15 01:53
pint
3.25
KB
-rw-r--r--
2025-09-15 01:53
pint.bat
131
B
-rw-r--r--
2025-09-15 01:53
psysh
3.24
KB
-rw-r--r--
2025-09-15 01:53
psysh.bat
132
B
-rw-r--r--
2025-09-15 01:53
sail
946
B
-rw-r--r--
2025-09-15 01:53
sail.bat
152
B
-rw-r--r--
2025-09-15 01:53
var-dump-server
3.32
KB
-rw-r--r--
2025-09-15 01:53
var-dump-server.bat
142
B
-rw-r--r--
2025-09-15 01:53
yaml-lint
3.29
KB
-rw-r--r--
2025-09-15 01:53
yaml-lint.bat
136
B
-rw-r--r--
2025-09-15 01:53
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 exec "${dir}/sail" "$@"