Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
pilasa-core /
vendor /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
carbon
3.25
KB
-rw-r--r--
2024-07-17 14:08
carbon.bat
133
B
-rw-r--r--
2024-07-17 14:08
generate-defuse-key
3.31
KB
-rw-r--r--
2024-07-17 14:08
generate-defuse-key.bat
146
B
-rw-r--r--
2024-07-17 14:08
patch-type-declarations
3.35
KB
-rw-r--r--
2024-07-17 14:08
patch-type-declarations.bat
150
B
-rw-r--r--
2024-07-17 14:08
php-parse
3.27
KB
-rw-r--r--
2024-07-17 14:08
php-parse.bat
136
B
-rw-r--r--
2024-07-17 14:08
phpunit
3.6
KB
-rw-r--r--
2024-07-17 14:08
phpunit.bat
134
B
-rw-r--r--
2024-07-17 14:08
pint
3.25
KB
-rw-r--r--
2024-07-17 14:08
pint.bat
131
B
-rw-r--r--
2024-07-17 14:08
psysh
3.24
KB
-rw-r--r--
2024-07-17 14:08
psysh.bat
132
B
-rw-r--r--
2024-07-17 14:08
sail
941
B
-rw-r--r--
2024-07-17 14:08
sail.bat
152
B
-rw-r--r--
2024-07-17 14:08
var-dump-server
3.32
KB
-rw-r--r--
2024-07-17 14:08
var-dump-server.bat
142
B
-rw-r--r--
2024-07-17 14:08
yaml-lint
3.29
KB
-rw-r--r--
2024-07-17 14:08
yaml-lint.bat
136
B
-rw-r--r--
2024-07-17 14:08
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" "$@"